Skip to content
Snippets Groups Projects
Commit a0547b7b authored by mtaran-google's avatar mtaran-google Committed by Marijn Haverbeke
Browse files

[sublime] Make goSubwordLeft/Right shortcuts match Sublime on OSX

parent 6a845599
No related branches found
No related tags found
No related merge requests found
...@@ -52,8 +52,10 @@ ...@@ -52,8 +52,10 @@
}); });
} }
cmds[map["Alt-Left"] = "goSubwordLeft"] = function(cm) { moveSubword(cm, -1); }; var goSubwordCombo = mac ? "Ctrl-" : "Alt-";
cmds[map["Alt-Right"] = "goSubwordRight"] = function(cm) { moveSubword(cm, 1); };
cmds[map[goSubwordCombo + "Left"] = "goSubwordLeft"] = function(cm) { moveSubword(cm, -1); };
cmds[map[goSubwordCombo + "Right"] = "goSubwordRight"] = function(cm) { moveSubword(cm, 1); };
if (mac) map["Cmd-Left"] = "goLineStartSmart"; if (mac) map["Cmd-Left"] = "goLineStartSmart";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment