From 82c07a5f68da4b1bfb59f7ebddfd6a07b8eea598 Mon Sep 17 00:00:00 2001 From: Vlad Zinculescu Date: Tue, 23 Oct 2012 10:49:52 +0200 Subject: [PATCH] update keyboard shortcut for modifyNumber --- lib/ace/commands/default_commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ace/commands/default_commands.js b/lib/ace/commands/default_commands.js index 458d5582..b833f0ca 100644 --- a/lib/ace/commands/default_commands.js +++ b/lib/ace/commands/default_commands.js @@ -333,12 +333,12 @@ exports.commands = [{ multiSelectAction: "forEach" }, { name: "modifyNumber+1", - bindKey: bindKey("Ctrl-Shift-Up", "Ctrl-Command-Up"), + bindKey: bindKey("Alt-Shift-Up", "Alt-Shift-Up"), exec: function(editor) { editor.modifyNumber(1); }, multiSelectAction: "forEach" }, { name: "modifyNumber-1", - bindKey: bindKey("Ctrl-Shift-Down", "Ctrl-Command-Down"), + bindKey: bindKey("Alt-Shift-Down", "Alt-Shift-Down"), exec: function(editor) { editor.modifyNumber(-1); }, multiSelectAction: "forEach" }, {