VS 코드의 console.log() 단축키

3104 단어
  • 첫 단계:


  • 두 번째 단계 (이미지처럼 빨간 마크 클릭)


  • 세 번째 단계(코드의 11~18번 라인 작성)


  • 암호

  • // Place your key bindings in this file to override the defaultsauto[]
    [
        {
            "key": "ctrl+r",
            "command": "code-runner.run"
        },
        {
            "key": "ctrl+alt+n",
            "command": "-code-runner.run"
        },
        {
            "key": "ctrl+shift+l",
            "command": "editor.action.insertSnippet",
            "when": "editorTextFocus",
            "args": {
                "snippet": "console.log(`${TM_SELECTED_TEXT}$1`$2);"
            }
        }
    ]
    

    좋은 웹페이지 즐겨찾기