In VSCoq, is the best practice to ignore .vo
, .glob
, etc., really to have the following in .vscode/settings.json
:
{
"files.exclude": {
"**/.*.aux": true,
"**/*.glob": true,
"**/*.vo": true,
"**/*.vok": true,
"**/*.vos": true
}
}
Isn't this something that can be configured by default for all projects somehow?
that’s a great vscode mystery
my files.exclude
lists **/.git
and **/.DS_Store
, and I just confirmed neither is implied.
uh sorry, that’s not true.
hm. I have the Hide gitignored
extension, and I have a global .gitignore
configuration with those files.
OK, so basically one should get that extension and not bother with the above (settings.json
)?
but I remember that wasn’t satisfactory, so I still have those files in files.exclude...
sorry — my TLDR is “I also failed to find something better”
that's depressing, I guess this is state of the art (everyone goes in and configures on their own, or we all duplicate a settings.json
everywhere): https://stackoverflow.com/questions/30140112/how-do-i-hide-certain-files-from-the-sidebar-in-visual-studio-code
I'm still all in on emacs, but since everyone and their brother is seemingly using vscode these days, I have to keep up..
At least you'll see all the possible bugs from async proofs and/or VsCoq... (Async proofs work better in coqide)
I think if, instead of using the bar on the left with the list of files, you use Ctrl/Cmd + P to access files, it is smarter and recommends the interesting files first.
But does that work for the workspace search? IIRC not
Oh I see sorry.
Last updated: Jun 04 2023 at 22:30 UTC