From 3bcfb70e4045e5aa2cdedd5fd5ceb56e35ee5620 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Tue, 3 Jul 2012 13:39:17 -0500 Subject: [PATCH] Restore Emacs up key binding Broken by 689bed38ffabf99463df94b450db2adb560dcf79 --- 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 a64b61cf..415fc2e9 100644 --- a/lib/ace/commands/default_commands.js +++ b/lib/ace/commands/default_commands.js @@ -295,13 +295,13 @@ exports.commands = [{ readOnly: true }, { name: "jumptomatching", - bindKey: bindKey("Ctrl-P", "Ctrl-P"), + bindKey: bindKey("Ctrl-P", "Ctrl-Shift-P"), exec: function(editor) { editor.jumpToMatching(); }, multiSelectAction: "forEach", readOnly: true }, { name: "selecttomatching", - bindKey: bindKey("Ctrl-Shift-P", "Ctrl-Shift-P"), + bindKey: bindKey("Ctrl-Shift-P", null), exec: function(editor) { editor.jumpToMatching(true); }, readOnly: true },