diff options
author | nyamatongwe <unknown> | 2000-05-21 14:36:52 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-05-21 14:36:52 +0000 |
commit | 9e33d28d84aa6a9d6de61eeef631fe80d72a53b0 (patch) | |
tree | 90bd2f31a11353974aa9510882b7c97ed4a3a6e7 | |
parent | 4411196ecc034c7a564b74182891095deeae75d2 (diff) | |
download | scintilla-mirror-9e33d28d84aa6a9d6de61eeef631fe80d72a53b0.tar.gz |
Shift+Backspace is same as backspace.
-rw-r--r-- | src/KeyMap.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx index 3a6a31f97..dba68704c 100644 --- a/src/KeyMap.cxx +++ b/src/KeyMap.cxx @@ -95,6 +95,7 @@ KeyToCommand KeyMap::MapDefault[] = { {VK_INSERT, SCI_CTRL, WM_COPY}, {VK_ESCAPE, SCI_NORM, SCI_CANCEL}, {VK_BACK, SCI_NORM, SCI_DELETEBACK}, + {VK_BACK, SCI_SHIFT, SCI_DELETEBACK}, {VK_BACK, SCI_CTRL, SCI_DELWORDLEFT}, {'Z', SCI_CTRL, WM_UNDO}, {'Y', SCI_CTRL, SCI_REDO}, |