공부하는가비

VS CODE console.log 단축키 설정 본문

카테고리 없음

VS CODE console.log 단축키 설정

가비코코보리 2022. 11. 30. 09:35

keybindings.json 파일에 해당 부분 추가 

    {
        "key": "ctrl+l",
        "command": "editor.action.insertSnippet",
        "when": "editorTextFocus",
        "args": {
            "snippet": "console.log();"
        }
    }

 

Comments