vscode常用操作

1

vscode跳转node_modules下文件,没有切换定位到左侧菜单目录的问题

2,搜索node-modules

3,设置选中字体颜色

{
    "workbench.colorTheme": "Default Light Modern",
    "editor.mouseWheelZoom": true,
    "terminal.integrated.allowChords": false,
    "workbench.colorCustomizations": {  
        //设置用户选中代码段的颜色 
        "editor.selectionBackground": "#da5555",
        //搜索匹配的背景色
        "editor.findMatchBackground": "#ff0000",
        "editor.findMatchHighlightBackground": "#f5f101",
        "editor.findRangeHighlightBackground": "#ff9900"
        },
        "files.autoSave": "onFocusChange",
        "search.exclude": {
            "**/node_modules": false
        },
        "explorer.autoRevealExclude": {
            "**/node_modules": false
        },
        "workbench.settings.applyToAllProfiles": [
            
        ],
}

上一篇:小白跟做江科大32单片机之蜂鸣器


下一篇:从零开始学React--环境搭建