From 4329b6a7290a16f6049b42259f2dc8dec14cdc48 Mon Sep 17 00:00:00 2001 From: nightwing Date: Thu, 15 May 2014 19:59:01 +0400 Subject: [PATCH] assign key to splitline command on windows (#1956) --- 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 6506b5cf..1014f668 100644 --- a/lib/ace/commands/default_commands.js +++ b/lib/ace/commands/default_commands.js @@ -580,7 +580,7 @@ exports.commands = [{ scrollIntoView: "cursor" }, { name: "splitline", - bindKey: bindKey(null, "Ctrl-O"), + bindKey: bindKey("Shift-Enter", "Ctrl-O"), exec: function(editor) { editor.splitLine(); }, multiSelectAction: "forEach", scrollIntoView: "cursor"