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"
    }
    */
]


이관 : https://training-1.tistory.com/238


'Programming' 카테고리의 다른 글

VSCode mac gcc bits/stdc++.h 헤더 추가  (2) 2020.04.08
VSCode 빌드 단축키 설정  (0) 2020.04.08
VSCode auto format 중괄호 문제  (1) 2020.04.08
vscode 세팅 (settings.json & tasks.json)  (3) 2019.08.19