Remove +10, change command name

This commit is contained in:
Garen Torikian 2012-10-23 11:42:22 -07:00 committed by nightwing
commit 23f7fc4658

View file

@ -332,25 +332,15 @@ exports.commands = [{
exec: function(editor) { editor.toggleCommentLines(); },
multiSelectAction: "forEach"
}, {
name: "modifyNumber+1",
name: "modifyNumberUp",
bindKey: bindKey("Ctrl-Shift-Up", "Alt-Shift-Up"),
exec: function(editor) { editor.modifyNumber(1); },
multiSelectAction: "forEach"
}, {
name: "modifyNumber-1",
name: "modifyNumberDown",
bindKey: bindKey("Ctrl-Shift-Down", "Alt-Shift-Down"),
exec: function(editor) { editor.modifyNumber(-1); },
multiSelectAction: "forEach"
}, {
name: "modifyNumber+10",
bindKey: bindKey("Ctrl-Alt-Shift-Up", "Alt-Command-Shift-Up"),
exec: function(editor) { editor.modifyNumber(10); },
multiSelectAction: "forEach"
}, {
name: "modifyNumber-10",
bindKey: bindKey("Ctrl-Alt-Shift-Down", "Alt-Command-Shift-Down"),
exec: function(editor) { editor.modifyNumber(-10); },
multiSelectAction: "forEach"
}, {
name: "replace",
bindKey: bindKey("Ctrl-R", "Command-Option-F"),