Skip to content

Instantly share code, notes, and snippets.

@istepanov
Created October 25, 2012 07:00
Show Gist options
  • Star 37 You must be signed in to star a gist
  • Fork 26 You must be signed in to fork a gist
  • Save istepanov/3950977 to your computer and use it in GitHub Desktop.
Save istepanov/3950977 to your computer and use it in GitHub Desktop.
Remove PHPStorm settings from Mac OS X 10.8 Mountain Lion
#!/usr/bin/sh
rm -rf "$HOME/Library/Preferences/WebIde40"
rm -rf "$HOME/Library/Caches/WebIde40"
rm -rf "$HOME/Library/Application Support/WebIde40"
rm -rf "$HOME/Library/Logs/WebIde40"
@urbanc
Copy link

urbanc commented May 30, 2013

tnx man this really help me :)

@Clemzd
Copy link

Clemzd commented Aug 25, 2014

I agree with this post

@akashpjames
Copy link

This doesn't work with the current version of Webstorm 2016.1.

@ikorgik
Copy link

ikorgik commented May 7, 2016

Works great for me for PhpStorm 2016.1, you just need to use PhpStorm2016.1 instead of WebIde40

@gasp
Copy link

gasp commented Jun 27, 2016

find out the correct folders to delete with

ls ~/Library/Preferences/jetbrains.*
ls ~/Library/Caches/PhpStorm*
ls ~/Library/Application\ Support/PhpStorm*
ls ~/Library/Logs/PhpStorm*

@jeyremy
Copy link

jeyremy commented Feb 8, 2018

@gasp Thanks a lot

rm -rf ~/Library/Preferences/jetbrains.*
rm -rf ~/Library/Caches/PhpStorm*
rm -rf  ~/Library/Application\ Support/PhpStorm*
rm -rf ~/Library/Logs/PhpStorm*

did the trick for me thank you for saving me the day !

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