Is there an easy way in IDEA 12 to rename a project in the \"Recent Projects\" list?
I've tried the answer of @Matthias, @Ernest and @fhucho, but did not work (with 12.1.6CE).
What made it work was:
.ipr
file, as proposed by @Ernest
.iml
nor .iws
file.idea/.name
replace all occurrences for the initial project name by the new one in all .xml
files
find . -name "*.xml" -exec grep -Hn $InitProjectName {} \;