0

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

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

如何覆盖此键绑定?

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

4

2 回答 2

1

要禁用,请添加

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

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

于 2015-04-30T18:20:05.513 回答
1

在 VSCode 0.3.0 中,我们不再默认绑定这个键绑定!

于 2015-06-03T18:54:32.860 回答