diff options
author | nyamatongwe <devnull@localhost> | 2011-07-12 10:20:30 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-07-12 10:20:30 +1000 |
commit | b4ae9227d924a021efcf82d08c498e4bdbbf7c5b (patch) | |
tree | 79da2397ba1ed8f65005ed1154bc36fa62838f5b /src | |
parent | 2920827d89e857840591af32ce2cbcd05c0aec7f (diff) | |
download | scintilla-mirror-b4ae9227d924a021efcf82d08c498e4bdbbf7c5b.tar.gz |
Report control key as SCMOD_META with GTK+ on OS X.
Mostly from Mitchell Foral.
Diffstat (limited to 'src')
-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 fd9005de8..f1235d845 100644 --- a/src/KeyMap.h +++ b/src/KeyMap.h @@ -16,6 +16,7 @@ namespace Scintilla { #define SCI_SHIFT SCMOD_SHIFT #define SCI_CTRL SCMOD_CTRL #define SCI_ALT SCMOD_ALT +#define SCI_META SCMOD_META #define SCI_CSHIFT (SCI_CTRL | SCI_SHIFT) #define SCI_ASHIFT (SCI_ALT | SCI_SHIFT) |