Storage Space Fix
At a Linux terminal prompt from VSCode (pick any of the following cs01-cs06
), please run the following commands and make sure to copy and paste the entire command.
To find and list your VSCode cache files run this:
find ~ -name '.browse.VC.db' -exec ls -lh "{}" \;
To find and delete the cache files run this:
find ~ -name '.browse.VC.db' -exec rm "{}" \;
Then list the file again, you should see a decrease in cache files.
find ~ -name '.browse.VC.db' -exec ls -lh "{}" \;