user - settings.json
{
"window.commandCenter": true,
"files.associations": {
"*.js": "javascriptreact",
"*.jsx": "javascriptreact",
},
"typescript.suggest.autoImports": true,
"javascript.suggest.autoImports": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.wordWrap": "on",
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always"
}
"window.commandCenter": true
"files.associations"
*.js
, *.jsx
파일을 javascriptreact로 인식하도록 설정"typescript.suggest.autoImports": true
"javascript.suggest.autoImports": true
"editor.tabSize": 2
"editor.insertSpaces": true
"editor.wordWrap": "on"
"typescript.updateImportsOnFileMove.enabled": "always"
"javascript.updateImportsOnFileMove.enabled": "always"
user - keybindings.json
[
{
"key": "alt+left",
"command": "cursorHome",
"when": "editorTextFocus"
},
{
"key": "alt+right",
"command": "cursorEnd",
"when": "editorTextFocus"
},
{
"key": "alt+shift+left",
"command": "cursorHomeSelect",
"when": "editorTextFocus"
},
{
"key": "alt+shift+right",
"command": "cursorEndSelect",
"when": "editorTextFocus"
}
]
"alt+left" → "cursorHome"
"alt+right" → "cursorEnd"
"alt+shift+left" → "cursorHomeSelect"
"alt+shift+right" → "cursorEndSelect"
"when": "editorTextFocus"