VSCode 资源管理器聚焦时聚焦活动编辑器组不工作

VSCode Focus Active Editor Group when explorer is Focused Not Working

在 VSCode 1.64.1 on Windows 中,我正在尝试创建一些用于聚焦的条件快捷方式。

当文件资源管理器 聚焦时,我希望 ctrl+0 聚焦活动编辑器组。当活动编辑器组 聚焦时,我希望 ctrl+0 聚焦资源管理器。我尝试了以下方法,但它只部分起作用。

目前,点击 ctrl+0 会聚焦浏览器,但是当浏览器聚焦时再次点击 ctrl+0 不会按需要聚焦活动编辑器组:

//keybindings.json
  {
    "key": "ctrl+0",
    "command": "workbench.action.focusActiveEditorGroup",
    "when": "!editorTextFocus"
  },
  {
    "key": "ctrl+0",
    "command": "workbench.action.focusSideBar",
    "when": "!explorerFocus"
  }

我没有看到 explorerFocus 上下文键。以下确实有效:

{
  "key": "ctrl+0",
  "command": "workbench.action.focusActiveEditorGroup",
  "when": "!editorTextFocus"
},
{
  "key": "ctrl+0",
  "command": "workbench.action.focusSideBar",
  "when": "!filesExplorerFocus"                  // change here
}

显然,当您使用 non-existent 上下文键时,根本不会评估 when 子句 - 就好像它不存在一样。由于键绑定的评估是从文件底部开始的 - 从底部开始的第一个获胜 - 你的 focusActiveEditorGroup 命令将永远不会被看到。