aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2013-01-10 10:02:18 +1100
committernyamatongwe <unknown>2013-01-10 10:02:18 +1100
commit0e94e8fb61aae6d6a83c250c758bdfb0b80d7c45 (patch)
treead9a1906f1e2b74adc5fe9e775b1b55a06f47b2c
parent499359e6090a0e60c2f59e4eab4ee027506a13be (diff)
downloadscintilla-mirror-0e94e8fb61aae6d6a83c250c758bdfb0b80d7c45.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},