diff options
author | nyamatongwe <unknown> | 2003-10-15 12:02:29 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-10-15 12:02:29 +0000 |
commit | c9379a712cabd0f394be63573d0303e61d480211 (patch) | |
tree | 70f2b11ffe0b27969fa6c407724d32360d4b7150 | |
parent | c14120f4bb567f318f8ad4cfb2f99178ab2dc64d (diff) | |
download | scintilla-mirror-c9379a712cabd0f394be63573d0303e61d480211.tar.gz |
Added key bindings to key map for functions displaced by rectangular
selection.
-rw-r--r-- | win32/ScintillaWin.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 154c95192..f6781cdd0 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -352,6 +352,11 @@ static int KeyTranslate(int keyIn) { case VK_ADD: return SCK_ADD; case VK_SUBTRACT: return SCK_SUBTRACT; case VK_DIVIDE: return SCK_DIVIDE; + case VK_OEM_2: return '/'; + case VK_OEM_3: return '`'; + case VK_OEM_4: return '['; + case VK_OEM_5: return '\\'; + case VK_OEM_6: return ']'; default: return keyIn; } } |