aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/KeyMap.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-08-02 00:58:41 +0000
committernyamatongwe <unknown>2002-08-02 00:58:41 +0000
commit7618ac364f84cd70fc5ef5cedc69b1c00156f2d3 (patch)
treee165d69751ce8286bf1b50675e65ae02b8970e39 /src/KeyMap.cxx
parentaa68ba59780e99998651991ca0c6f16c5f6c8520 (diff)
downloadscintilla-mirror-7618ac364f84cd70fc5ef5cedc69b1c00156f2d3.tar.gz
Made Shift+Enter be the same as Enter.
Diffstat (limited to 'src/KeyMap.cxx')
-rw-r--r--src/KeyMap.cxx1
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},