mac环境下VSCODE 全局搜索无效的问题

使用VSCode时,发现全局搜索无效,然后看到github上有关于此问题的issue,具体解决办法如下:

1 打开设置

2 把如下代码复制粘贴进入

"search.exclude": {
   "system/": true,
   "!/system/**/*.ps*": true
 }

3 重启VSCODE,然后就能看到效果

原文地址:https://www.cnblogs.com/jaysonguo/p/7508794.html