如何通过单击Escape使VSCode专注于活动编辑器?

时间:2019-03-15 21:24:02

标签: visual-studio-code

这让我发疯了,我习惯了Visual Studio,可以点击Escape并返回编辑。 VSCode不这样做!啊!有办法使它起作用吗?

1 个答案:

答案 0 :(得分:4)

这也让我很烦,所以我知道了。 Turns out they've got the command under the hood but not bound to any keys

  1. Cmd + Shift + P
  2. 首选项:打开键盘快捷键(JSON)
  3. 添加此对象:
{
    "key": "escape",
    "command":"workbench.action.focusActiveEditorGroup",
    "when":"!editorTextFocus"
}