我在Mac OS 10.14.3上使用VS Code 1.30.2,我的工作文件夹在samba服务器上。
/Volumes/space/libs/
/Volumes/space/commons/
/Volumes/space/Works/project1/
/Volumes/space/Works/project2/
我处理“空间”卷,但是由于文件太多,因此不需要索引所有文件夹。
我尝试配置Watcher Exclude和Search Exclude,但是索引继续进行会导致服务器上的流量拥塞。
"search.exclude": {
"**/Volumes/space/commons/**": true,
"**/Volumes/space/libs/**": true,
},
"files.watcherExclude": {
"**/Volumes/space/commons/**": true,
"**/Volumes/space/libs/**": true,
},
我该如何解决?