diff options
author | nyamatongwe <devnull@localhost> | 2002-08-02 00:58:41 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-08-02 00:58:41 +0000 |
commit | 151fca922f242a474587f8623284fd34496fd44c (patch) | |
tree | e165d69751ce8286bf1b50675e65ae02b8970e39 | |
parent | 4f933165b963784e68c7949898082a5d0049a0a6 (diff) | |
download | scintilla-mirror-151fca922f242a474587f8623284fd34496fd44c.tar.gz |
Made Shift+Enter be the same as Enter.
-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 761df4c8f..7a19e9e42 100644 --- a/src/KeyMap.cxx +++ b/src/KeyMap.cxx @@ -115,6 +115,7 @@ const KeyToCommand KeyMap::MapDefault[] = { {SCK_TAB, SCI_NORM, SCI_TAB}, {SCK_TAB, SCI_SHIFT, SCI_BACKTAB}, {SCK_RETURN, SCI_NORM, SCI_NEWLINE}, + {SCK_RETURN, SCI_SHIFT, SCI_NEWLINE}, {SCK_ADD, SCI_CTRL, SCI_ZOOMIN}, {SCK_SUBTRACT, SCI_CTRL, SCI_ZOOMOUT}, {SCK_DIVIDE, SCI_CTRL, SCI_SETZOOM}, |