用vscode打开了一个nodejs项目,然后ctrl+shift+f
全局搜node_modules
目录中的东西,结果是找不到。
后来在ctrl+shift+p
输入setting打开设置文件加入search.exclude之后还是搜不出来。
"search.exclude": {
"**/node_modules": false,
"./node_modules": false
}
最后发现项目中存在.gitignore
文件,vscode搜索时会自动过滤.gitignore
这个配置。最终在setting.json
设置中加入"search.useIgnoreFiles": false
就好了。
微软老是加隐藏buf,真让人难找。
网友评论