개발새발/개발 셋업
[VsCode] Mac에서 Vscode terminal focus setting
_안쑤
2021. 10. 10. 16:26
VsCode를 열고 cmd + shift + P
Preferences: Open Keyboard Shortcuts (JSON) 선택
아래 copy & paste
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+;",
"command": "terminal.focus",
"when": "editorFocus"
},
{
"key": "ctrl+;",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
}
]
*ctrl : control key
*cmd : command key