From 23f7fc465859783a928d407abcfec4d56a7472e6 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 23 Oct 2012 11:42:22 -0700 Subject: [PATCH] Remove +10, change command name --- lib/ace/commands/default_commands.js | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/lib/ace/commands/default_commands.js b/lib/ace/commands/default_commands.js index f7c96538..8c33fc42 100644 --- a/lib/ace/commands/default_commands.js +++ b/lib/ace/commands/default_commands.js @@ -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"),