소스 검색

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 @@
     }
   }
 
-}));
+}));