vscode配置

ywb201314發表於2020-10-12

ctrl + k, m         切換語言

ctrl + shift + k        刪除一行

ctrl + g        跳到指定行

ctrl + d          選中單詞,多次按下,可選中多個同名單詞,使用多游標

ctrl + shift + v       預覽markdown

ctrl + p                           快速搜尋檔案

crtl + shit + p       顯示所有命令

ctrl + \                            快速拆邊(多開視窗)

code .        開啟當前目錄

code path                      開啟指定目錄ctrl + ,        開啟配置檔案

設定
// 將設定放入此檔案中以覆蓋預設設定

{
    "editor.fontSize": 14,
    "terminal.integrated.fontSize": 14, 
    "files.associations": {
        "*.es": "javascript",
        "*.vue": "vue",
        "*.mako": "html"
    },
    "javascript.validate.enable": false,
    "files.autoSave": "afterDelay",
    "window.zoomLevel": 0,
    "workbench.iconTheme": "vs-seti",
    "window.openFilesInNewWindow": "on",
    "px-to-rem.px-per-rem": 75,
    "workbench.editor.enablePreview": false,
    "editor.minimap.enabled": false,
    "emmet.triggerExpansionOnTab": true,
    "emmet.includeLanguages": {
        "php": "html",
        "nunjucks": "html",
        "vue-html": "html",
        "vue": "html"
    },
    "python.pythonPath": "/usr/local/bin/python3",
    "workbench.colorTheme": "Monokai",
    "workbench.startupEditor": "newUntitledFile",
    "editor.tabCompletion": "on",
    "beautify.config": {
        "indent_size": 4,
        "css": {
            "indent_size": 4,
            "newline_between_rules": false
        }
    }
}

 

外掛

相關文章