如题,想在 visual studio code 中搜索(Ctrl+Shift+F)时自动排除 .gitignore 中已忽略的文件,不然会在 build 生成文件在搜索(比如 *.min.js),这样不仅会产生干扰性的搜索结果,而且会影响搜索速度
通过 VS Code Tip of the Week: Exclude Git Ignore 找到了解决方法
在 settings.json 中添加下面的配置项
"explorer.excludeGitIgnore": true
就是这个,谢谢