我使用ctrl + shift + c来打开vscode上的外部终端,但它并不专注于外部终端。它总是在vscode之后。我想知道如何打开外部终端并对其进行“聚焦”。
答案 0 :(得分:0)
分配一个热键以将焦点放在终端上。
{
"key": "ctrl+;",
"command": "workbench.action.terminal.focus"
},
就我而言
答案 1 :(得分:0)
{
"key": "ctrl+;",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
``` to complete the settings