Cloud Research

Vscode Mac — Uninstall

/

by Joe

Vscode Mac — Uninstall

💡 Dragging to Trash leaves configuration files behind. Delete those next.

Are you looking to uninstall Visual Studio Code (VSCode) from your Mac? Perhaps you've decided to switch to a different code editor or need to free up space on your device. Whatever the reason, uninstalling VSCode on Mac is a relatively straightforward process. In this review, we'll walk you through the steps to completely remove VSCode from your Mac. uninstall vscode mac

: Open Finder and navigate to your Applications folder. 💡 Dragging to Trash leaves configuration files behind

rm -rf ~/Library/Application\ Support/Code rm -rf ~/.vscode Perhaps you've decided to switch to a different

For users comfortable with the command line, you can remove everything with a few commands:

sudo rm -rf /Applications/Visual\ Studio\ Code.app

Terminal app and run these commands one by one to purge all residual data: Stack Overflow +1 bash # Remove main application support (settings, global storage) rm -rf ~/Library/Application\ Support/Code # Remove extensions and workspace storage rm -rf ~/.vscode # Remove cached data rm -rf ~/Library/Caches/com.microsoft.VSCode* # Remove saved application state rm -rf ~/Library/Saved\ Application\ State/com.microsoft.VSCode.savedState # Remove preference files rm -rf ~/Library/Preferences/com.microsoft.VSCode* Use code with caution. Copied to clipboard Option B: Manual Removal (GUI) Open