aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-06-23 12:38:19 +0000
committernyamatongwe <devnull@localhost>2000-06-23 12:38:19 +0000
commitd1e498b7db17dbe69c8982b7eddb37cb846cfa31 (patch)
tree2471aa17dbfeab8e5f839845dd7398475fc5591b
parente448128c06157e09c2355255e1db6a81e075596e (diff)
downloadscintilla-mirror-d1e498b7db17dbe69c8982b7eddb37cb846cfa31.tar.gz
Added Alt+BackSpace as synonym for Undo.
-rw-r--r--src/KeyMap.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/KeyMap.cxx b/src/KeyMap.cxx
index dba68704c..f16c21b31 100644
--- a/src/KeyMap.cxx
+++ b/src/KeyMap.cxx
@@ -97,6 +97,7 @@ KeyToCommand KeyMap::MapDefault[] = {
{VK_BACK, SCI_NORM, SCI_DELETEBACK},
{VK_BACK, SCI_SHIFT, SCI_DELETEBACK},
{VK_BACK, SCI_CTRL, SCI_DELWORDLEFT},
+ {VK_BACK, SCI_ALT, WM_UNDO},
{'Z', SCI_CTRL, WM_UNDO},
{'Y', SCI_CTRL, SCI_REDO},
{'X', SCI_CTRL, WM_CUT},