From b93d7727202a134172f4b865fc8151c1abdafae7 Mon Sep 17 00:00:00 2001 From: nightwing Date: Fri, 23 Jan 2015 17:20:29 +0400 Subject: [PATCH] do not overwrite ctrl-alt-0 on windows since that is used on German keyboard --- lib/ace/commands/default_commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ace/commands/default_commands.js b/lib/ace/commands/default_commands.js index c5d34aae..f121adb6 100644 --- a/lib/ace/commands/default_commands.js +++ b/lib/ace/commands/default_commands.js @@ -119,7 +119,7 @@ exports.commands = [{ readOnly: true }, { name: "foldall", - bindKey: bindKey("Ctrl-Alt-0", "Ctrl-Command-Option-0"), + bindKey: bindKey(null, "Ctrl-Command-Option-0"), exec: function(editor) { editor.session.foldAll(); }, scrollIntoView: "center", readOnly: true