当我尝试创建文件或重命名现有文件时,如果我输入g,我会收到一条消息:(G)被按下。等待和弦的第二个键...如果我键入j,k或o或箭头键没有任何反应。
请参阅下面的keybindings文件摘录:
{ "key": "left", "command": "extension.vim_left", "when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "right", "command": "extension.vim_right", "when": "editorTextFocus && vim.active && !inDebugRepl" },
{ "key": "up", "command": "extension.vim_up", "when": "editorTextFocus && vim.active && !inDebugRepl && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible" },
{ "key": "down", "command": "extension.vim_down", "when": "editorTextFocus && vim.active && !inDebugRepl && !suggestWidgetMultipleSuggestions && !suggestWidgetVisible" },
{ "key": "j", "command": "list.focusDown", "when": "listFocus" },
{ "key": "k", "command": "list.focusUp", "when": "listFocus" },
{ "key": "o", "command": "list.toggleExpand", "when": "listFocus" },
{ "key": "g g", "command": "list.focusFirst", "when": "listFocus" },
问题是:在资源管理器窗口中文件命名/重命名期间,键绑定是否应该处于活动状态,或者这是我意外启用的内容?在后一种情况下,我该如何禁用它?