I am having some low level issues with IntelliJ on my mac, I really want to just zero everything out and start over. But even after removing the application and re-installing it, IntelliJ still remembers things like what the last project was, what licensing key to use etc. Where is this information stored? And what is the best way to clear it out?

link|improve this question
Good question. I wonder if it would be a better fit on Super User (as it's not really a programming q) though. On the other hand, SO surely is full of IDE settings questions... – Jonik May 5 '10 at 15:27
feedback

3 Answers

up vote 12 down vote accepted

Normally information like this will be found in one of the following places in OS X:

/Users/username/Library/Preferences/AppName

/Users/username/Library/Preferences/com.appname.plist

/Users/username/Library/Application Support/AppName

/Library/Preferences/AppName

/Library/Preferences/com.appname.plist

/Library/Application Support/AppName

If the app adheres to the standard OS X conventions you weill find info in one or all of these places. If it doesnt store here you might check for a /Users/username/.intellij folder or something similar in your home directory

link|improve this answer
2  
Perfect! The data was stored across: /Users/username/Library/Preferences/AppName /Users/username/Library/Preferences/com.appname.plist – kalak451 May 5 '10 at 15:09
1  
BTW, this also happens in Windows, one thing is the installation and other the personal configuration. – OscarRyz May 5 '10 at 15:21
There is more stuff, like /Library/Caches You can run find / -iname intellij 2>/dev/null to find all Intellij related files. – Wojciech Bednarski Nov 21 '11 at 1:51
feedback

I just checked, and IntelliJ IDEA (at least 9.x versions) seems to store its global settings in ~/Library/Preferences/IntelliJIdea90CE/

(Where ~ is your home directory.)

Best way to clear it? Well, just delete the whole directory. :-) Or, if you suspect there might be something useful there after all, move it to a new name.

link|improve this answer
feedback

For AppCode (Objective C IDE) 1.0.4, on OSX, the path is: ~/Library/Preferences/appCode10

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.