Skip to content
Snippets Groups Projects
Unverified Commit 90ef4bd8 authored by Vincent Woo's avatar Vincent Woo Committed by Marijn Haverbeke
Browse files

[sublime keymap] Use goLineStartSmart for cmd-left

parent 9389a050
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,8 @@
cmds[map["Alt-Left"] = "goSubwordLeft"] = function(cm) { moveSubword(cm, -1); };
cmds[map["Alt-Right"] = "goSubwordRight"] = function(cm) { moveSubword(cm, 1); };
if (mac) map["Cmd-Left"] = "goLineStartSmart";
var scrollLineCombo = mac ? "Ctrl-Alt-" : "Ctrl-";
cmds[map[scrollLineCombo + "Up"] = "scrollLineUp"] = function(cm) {
......
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