vscode 切换终端:未绑定

827 阅读1分钟

问题

经常遇到终端不能通过快捷键打开的情况,时灵时不灵的。

image.png

解决方法

keybinding.json中增加快捷键绑定

[
  {
    "key": "ctrl+[Backquote]",
    "command": "workbench.action.terminal.toggleTerminal"
  }
]

参考资料

  1. macOSX: Toggle Terminal command will be unbound after changing system input source #28088