diff options
| author | nyamatongwe <unknown> | 2002-08-02 00:58:41 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2002-08-02 00:58:41 +0000 | 
| commit | 7618ac364f84cd70fc5ef5cedc69b1c00156f2d3 (patch) | |
| tree | e165d69751ce8286bf1b50675e65ae02b8970e39 /src | |
| parent | aa68ba59780e99998651991ca0c6f16c5f6c8520 (diff) | |
| download | scintilla-mirror-7618ac364f84cd70fc5ef5cedc69b1c00156f2d3.tar.gz | |
Made Shift+Enter be the same as Enter.
Diffstat (limited to 'src')
| -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},  | 
