无法使用VSCode打开终端选项卡

时间:2017-07-10 20:51:45

标签: terminal visual-studio-code

我为VSCode安装了terminal tabs并按照说明修改了keybindings.json

enter image description here

但是按 ctrl + t 不会打开新终端。如何从键盘打开新的终端选项卡?

2 个答案:

答案 0 :(得分:0)

这是因为when只会在集成终端处于焦点时激活命令。如果您想从任何地方打开终端,只需将其删除即可。

{ 
   "key": "ctrl+`", // This can be changed to any keys
   "command": "terminalTabs.createTerminal"
}

答案 1 :(得分:0)

command needs to skip the shell, so it can go to the terminal itself。打开偏好设置 - > 设置并修改commandsToSkipShell

"terminal.integrated.commandsToSkipShell": [
  (existing settings)
  "terminalTabs.createTerminal"
]