在我的项目中,有两倍的<代码>config和xxx/config
:
.
├── config
└── xxx/config
I want to exclude the config
folder while keeping xxx/config
folder when doing search in Visual Studio Code.
我尝试:
"search.exclude": {
"config": true, // not working
"**/config": true, // excluded wrong one
"./config": true, // not working
"${workspaceFolder}/config": true, // not working
// ... ...
}
是否有这样做的(简单)方法?
EDIT:
感谢@Timothy G.提供大量建议。 然而,解决办法似乎并没有在我的《万能全书》上发挥作用。
例如:
我尝试了三种排除办法:
看来,<代码>config贯穿所有这些编号。