aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2013-01-10 10:02:18 +1100
committernyamatongwe <devnull@localhost>2013-01-10 10:02:18 +1100
commit7085d8256501140935a8063dbbe2a3b50d7adb1e (patch)
treeefbf6dfa997405c5ee7f18d30448fd43ac5b046a
parentefd427703915aa15292971515aef1ad6f7fe4864 (diff)
downloadscintilla-mirror-7085d8256501140935a8063dbbe2a3b50d7adb1e.tar.gz
Switched Alt+Delete to delete word left to be more compatible with
OS X standards.
-rw-r--r--cocoa/ScintillaCocoa.mm2
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},