Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Last active October 1, 2023 12:07
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Nav-Appaiya/5a349fd46a6beece639b to your computer and use it in GitHub Desktop.
Save Nav-Appaiya/5a349fd46a6beece639b to your computer and use it in GitHub Desktop.
Purge PHPStorm 9.x Settings on OSX Yosemite
# PHPStorm v9.0
rm -rf ~/Library/Application\ Support/WebIde90
rm -rf ~/Library/Cache/WebIde90
rm -rf ~/Library/Preferences/WebIde90
# PHPStorm v10.0
rm -rf ~/Library/Application\ Support/WebIde100
rm -rf ~/Library/Cache/WebIde100
rm -rf ~/Library/Preferences/WebIde100
# 1-liner for Version 10 (EAP)
sudo rm -rf ~/Library/Application\ Support/WebIde100 && sudo rm -rf ~/Library/Cache/WebIde100 && sudo rm -rf ~/Library/Preferences/WebIde100
# Or the Sudo 1-Liner command for Version 9.0
sudo rm -rf ~/Library/Application\ Support/WebIde90 && sudo rm -rf ~/Library/Cache/WebIde90 && sudo rm -rf ~/Library/Preferences/WebIde90
@maximivanov
Copy link

On OSX El Captian it's rather ~/Library/Caches/... not ~/Library/Cache/...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment