浏览代码

Removed Ctrl-E keybinding (editor.create.new) on macOS (#420)

Ctrl-E is meant to move the cursor to the end of the line on macOS.
Stefano Palazzo 9 年之前
父节点
当前提交
8c468a5
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      desktop/core/src/desktop/static/desktop/js/ko.hue-bindings.js

+ 2 - 2
desktop/core/src/desktop/static/desktop/js/ko.hue-bindings.js

@@ -3005,7 +3005,7 @@
 
       editor.commands.addCommand({
         name: "new",
-        bindKey: {win: "Ctrl-e", mac: "Command-e|Ctrl-e"},
+        bindKey: {win: "Ctrl-e", mac: "Command-e"},
         exec: function () {
           huePubSub.publish('editor.create.new');
         }
@@ -4169,4 +4169,4 @@
     }
   }
 
-}));
+}));