diff options
author | nyamatongwe <devnull@localhost> | 2013-01-10 10:02:18 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-01-10 10:02:18 +1100 |
commit | 7085d8256501140935a8063dbbe2a3b50d7adb1e (patch) | |
tree | efbf6dfa997405c5ee7f18d30448fd43ac5b046a | |
parent | efd427703915aa15292971515aef1ad6f7fe4864 (diff) | |
download | scintilla-mirror-7085d8256501140935a8063dbbe2a3b50d7adb1e.tar.gz |
Switched Alt+Delete to delete word left to be more compatible with
OS X standards.
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index 365f6cb2e..4cf61b3f4 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -112,7 +112,7 @@ static const KeyToCommand macMapDefault[] = {SCK_BACK, SCI_NORM, SCI_DELETEBACK}, {SCK_BACK, SCI_SHIFT, SCI_DELETEBACK}, {SCK_BACK, SCI_CTRL, SCI_DELWORDLEFT}, - {SCK_BACK, SCI_ALT, SCI_UNDO}, + {SCK_BACK, SCI_ALT, SCI_DELWORDLEFT}, {SCK_BACK, SCI_CSHIFT, SCI_DELLINELEFT}, {'z', SCI_CMD, SCI_UNDO}, {'z', SCI_SCMD, SCI_REDO}, |