VSCode의 키 바인딩 설정, 확장에 대한 간단한 설명

4215 단어 VSCode

Windows
Mac

키 바인딩 설정

  • code 화면과terminal
  • 여러 개의 terminal을 이동합니다
  • keybindings.json
    json
    [
        {
            "key": "ctrl+;",            "command": "workbench.action.terminal.focus",
                                        "when": "editorTextFocus"
        },
        {
            "key": "ctrl+;",            "command": "workbench.action.focusFirstEditorGroup",
                                        "when": "terminalFocus"
        },
        {
            "key": "ctrl+n",            "command": "workbench.action.terminal.focusNext",
                                        "when": "terminalFocus"
        },
        {
            "key": "ctrl+p",            "command": "workbench.action.terminal.focusPrevious",
                                        "when": "terminalFocus"
        }      
    ]
    

    Extension


    CodeRunner


    Ctrl + Alt + N start
    Ctrl + Alt + M stop

    Color Highlight


    CSS Color

    HTML Snippets


    Code snippets

    Git History


    View Git History
    Ctrl + Shift + P > view his

    Simple Ruby ERB


    Ctrl + Shift + `<%= %>, <% %>, <%# %>

    vscode-icons


    icon

    PowerShell


    Code snippets etc

    Javascript Snipet Pack


    Code snippets
    cl console.log('')
    fn function methodName (arguments) {}
    afn function(arguments) {}
    fe array.forEach(function(item) {});
    jp JSON.parse(${1:obj});
    DOM
    

    좋은 웹페이지 즐겨찾기