与探险家命名文件中的代码内部人员:等待和弦的第二个键

时间:2017-11-27 18:05:05

标签: visual-studio-code key chord

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

当我尝试创建文件或重命名现有文件时,如果我输入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" },

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

0 个答案:

没有答案