keep mac line movement keybindings (still overridden by jumptomatching)

This commit is contained in:
nightwing 2014-06-22 23:33:45 +04:00
commit 6aaede1a2e

View file

@ -208,7 +208,7 @@ exports.commands = [{
readOnly: true
}, {
name: "golineup",
bindKey: bindKey("Up", "Up"),
bindKey: bindKey("Up", "Up|Ctrl-P"),
exec: function(editor, args) { editor.navigateUp(args.times); },
multiSelectAction: "forEach",
readOnly: true
@ -237,7 +237,7 @@ exports.commands = [{
readOnly: true
}, {
name: "golinedown",
bindKey: bindKey("Down", "Down"),
bindKey: bindKey("Down", "Down|Ctrl-N"),
exec: function(editor, args) { editor.navigateDown(args.times); },
multiSelectAction: "forEach",
scrollIntoView: "cursor",