다른 편집기와 마찬가지로 VScode에서도 선택한 텍스트를 따옴표로 묶음

아래와 같이 추가 키를 귀속시키면 됩니다.
(※ Windows/JIS 키보드)
keybindings.json
{
    "key": "shift+7",
    "command": "editor.action.insertSnippet",
    "when": "editorTextFocus && editorHasSelection",
    "args": {
        "snippet": "'$TM_SELECTED_TEXT$0'"
    }
},
{
    "key": "shift+2",
    "command": "editor.action.insertSnippet",
    "when": "editorTextFocus && editorHasSelection",
    "args": {
        "snippet": "\"$TM_SELECTED_TEXT$0\""
    }
}

좋은 웹페이지 즐겨찾기