2

操作系统:Ubuntu 16.04.3 LTS VS code-insiders (code-insiders_1.19.0-1511763384_amd64.deb) 代码扩展:(vim 0.10.5)

尝试创建文件或重命名现有文件时,如果我键入 g,我会收到一条消息:(G) 已按下。等待和弦的第二个键...如果我键入 j、k 或 o 或箭头键,则没有任何反应。

请参阅下面的键绑定文件的摘录:

{ "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" },

问题是:在资源管理器窗口中的文件命名/重命名期间键绑定是否应该处于活动状态,或者这是我意外启用的?在后一种情况下,如何禁用它?

4

0 回答 0