diff options
| author | nyamatongwe <devnull@localhost> | 2000-05-21 14:36:52 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-05-21 14:36:52 +0000 | 
| commit | 3d87535496d712d422f24354a33dd114bcc91f72 (patch) | |
| tree | 90bd2f31a11353974aa9510882b7c97ed4a3a6e7 /src/KeyMap.cxx | |
| parent | ebe3ffb62b60ed9684dbacd86c06734787bf1e40 (diff) | |
| download | scintilla-mirror-3d87535496d712d422f24354a33dd114bcc91f72.tar.gz | |
Shift+Backspace is same as backspace.
Diffstat (limited to 'src/KeyMap.cxx')
| -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}, | 
