diff options
author | nyamatongwe <unknown> | 2000-03-22 12:16:54 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-03-22 12:16:54 +0000 |
commit | 8215e26730058344bf706cafd76048703a283151 (patch) | |
tree | 7c44f53d74ea3a4303084e24b5a40e8139bc9a01 /src/KeyMap.h | |
parent | e20515d797effa6a135a714a90841c55f89c6111 (diff) | |
download | scintilla-mirror-8215e26730058344bf706cafd76048703a283151.tar.gz |
Split UndoHistory out of CellBuffer.
Fixed coalescing of nodes in the undo history.
Added LineCut, LineDelete, LineTranspose, UpperCase and LowerCase keyboard
commands and added keys for them.
Added UUID lexical class to CPP lexer.
Diffstat (limited to 'src/KeyMap.h')
-rw-r--r-- | src/KeyMap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/KeyMap.h b/src/KeyMap.h index 814f3aa3b..bc435e197 100644 --- a/src/KeyMap.h +++ b/src/KeyMap.h @@ -11,6 +11,7 @@ #define SCI_CTRL LEFT_CTRL_PRESSED #define SCI_ALT LEFT_ALT_PRESSED #define SCI_CSHIFT (SCI_CTRL | SCI_SHIFT) +#define SCI_ASHIFT (SCI_ALT | SCI_SHIFT) class KeyToCommand { public: |