1. scintilla\win32\ScintillaWin.cxx 
	1-1. Ʒ ߰
		case WM_SYSKEYDOWN:
		case WM_KEYDOWN: {
			int modifier = SCMOD_NORM;
			if ( Platform::IsKeyDown(VK_CONTROL) )
				modifier = modifier | SCMOD_CTRL;
			if ( Platform::IsKeyDown(VK_SHIFT) )
				modifier = modifier | SCMOD_SHIFT;
			if ( Platform::IsKeyDown(VK_MENU) )
				modifier = modifier | SCMOD_ALT;
			NotifyKey(wParam, modifier);

	1-2. NotifyParent ޽  ߰
		void ScintillaWin::NotifyKey(int key, int modifiers) {
			SCNotification scn = {0};
			scn.nmhdr.code = SCN_KEY;
			scn.ch = key;
			scn.modifiers = modifiers;

			NotifyParent(scn);
		}
