2017-04-03 78 views
5

只需在keybidings.json文件中添加新的密鑰,我就可以覆蓋VS代碼中的任何鍵盤快捷鍵。從VS代碼中刪除鍵盤快捷鍵

但是我無法刪除現有的快捷方式。更具體地說,我想刪除這一個:

{ "key": "ctrl+alt+down",   "command": "editor.action.insertCursorBelow", 
           "when": "editorTextFocus" } 

任何想法我該怎麼做?

謝謝。

回答

10

這是covered in our documentation for keybindings。在命令名稱前面添加一個-

對於你的榜樣,試着加入:

{ "key": "ctrl+alt+down", "command": "-editor.action.insertCursorBelow" } 

keybindings.json

1

一個空的命令改寫它似乎這樣的伎倆:

{ "key": "ctrl+alt+down", "command": "", 
          "when": "editorTextFocus" }