2026-09-09 15:28:51
In the latest visual studio code update they start out with an announcement of the visual studio code documentary... LOL
Man these guys have so much cash and running out of the ideas what to do with it.
#vscode
In the latest visual studio code update they start out with an announcement of the visual studio code documentary... LOL
Man these guys have so much cash and running out of the ideas what to do with it.
#vscode
🖥️ Speaks LSP over stdio, so any editor with an LSP client works: #SublimeText, #Zed, #VSCode, #Cursor
I feel a bit dumb for having discovered that so late, but #VSCode / #VSCodium do not use the .gitignore file to decide what inodes to watch for changes...
Working on a big #Rustlang project can be a nightmare (burning CPU, eating up all the RAM...), given that the target/ directory can end up using more than 100gb of disk space.
Remember to set your "files.watcherExclude" setting to avoid that problem:
```
{
"search.useIgnoreFiles": true,
"search.useGlobalIgnoreFiles": true,
"files.watcherExclude": {
"target/**": true,
"**/target/**": true
}
}
```