如何 disable/override 将 VS.Code 中的 ctrl+shift+i 绑定到 Windows?

How to disable/override the ctrl+shift+i binding in VS.Code for Windows?

ctrl+shift+i 好像很难打开Windows中的VS.CodeInspector/debugger。我在主行上使用倒 T 来控制光标 [1] 并且需要这个和弦免费用于 "select up":

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

如何覆盖此键绑定?

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

要禁用,请添加

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

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

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