如何禁用/覆盖VS.Code for Windows中的ctrl + shift + i绑定?

时间:2015-04-30 16:44:47

标签: visual-studio-code key-bindings

ctrl + shift +我似乎很难在Windows中打开VS.Code Inspector / debugger。我在主行上使用倒T来进行光标控制[1]并且需要这个和弦免费用于“选择”:

{"key": "ctrl+shift+i",     "command": "cursorUpSelect",
                            "when": "editorTextFocus"},

如何覆盖此键绑定?

1 http://xahlee.info/kbd/osx_keybinding.html

2 个答案:

答案 0 :(得分:1)

要禁用,请添加

{"key": "ctrl+shift+i",     "when": "editorTextFocus"}

/Users/<username>/Library/Application Support/Code/User/keybindings.json。缺少command属性表示当编辑器文本区域具有焦点时不会采取任何操作。

答案 1 :(得分:1)

使用VSCode 0.3.0,默认情况下我们不再绑定此键绑定!