Programming
vscode 단축키 세팅 (keybindings.json)
범고래_1
2019. 8. 19. 15:17
그냥 내가 쓰는 단축키....
compile : ctrl + alt + c
run : ctrl + alt + r
keybindings.json
// Place your key bindings in this file to override the defaultsauto[]
[
// compile
{
"key": "ctrl+alt+c",
"command": "workbench.action.tasks.build"
},
// run
{
"key": "ctrl+alt+r",
"command": "workbench.action.tasks.test"
},
{
"key": "alt+space",
"command": "editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
}
/*
{
"key": "ctrl+space",
"command": "-editor.action.triggerSuggest",
"when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
}
*/
]