1

I had been loading IntelliJ IDE when my PC rebooted unexpectedly. After running IntelliJ again the whole IDE layout was broken, there are no tool windows (except IDEtalk), I can't open Project View. I tried restoring layout via Window -> Restore Default Layout but nothing happens.

I tried even reinstalling whole IDE and reimporting the project (creating new project from sources) without any luck.

I can open individual files in editor through "open file by name". But no panel views in the layout are visible or accessible (see pictures).

Has anyone experienced this issue? How could I fix it? Reinstalling didn't help, which is a bit worrying.

IntelliJ version: 12.1.7

enter image description here

enter image description here

redhead
  • 1,264
  • 1
  • 17
  • 32
  • There is a folder called ".IntelliJIdea14" (or ".IdeaIC12" or something like that) in your home directory - what happens if you rename it, so IntelliJ has to create a new one? Using this folder is how IntelliJ persists configuration and other information even across reinstalls. – stuXnet May 28 '15 at 07:42
  • I checked some option in uninstall believing that it deletes all configuration for intellij, but I will try this method. – redhead May 28 '15 at 07:48
  • Ok, this did the trick. Thanks. I wonder what caused it though, so I don't need to let intellij generate it all over and losing my settings. I will copy over keymap and code style settings only. Thanks, if you post an answer I will mark accepted. – redhead May 28 '15 at 07:58
  • You could write a bug report for IntelliJ, attaching this config folder. IntelliJ should/could detect such corruption of it's config file, imho. But I'm glad I could help :) – stuXnet May 28 '15 at 08:04

1 Answers1

2

It seems that something in your configuration is utterly broken.

IntelliJ uses a dot-directory in your home, which could be called .IdeaIC12, .IdeaIC13 or .IntelliJIdea14, depending on your version (in your case, it should be .IdeaIC12 - just paste %HOMEPATH%\.IdeaIC12 into your address bar of Windows Explorer and see if it's there)

If you delete (or, safer, rename) this directory, IntelliJ will think it's a new, fresh installation, so it should work again.

If it doesn't, try uninstalling IntelliJ, deleting this config folder, and reinstalling IntelliJ. After this, I can think of no way it should still behave like this.

If you believe that IntelliJ uses another location for it's config directory, you can take a look at bin/idea.properties - if idea.config.path is uncommented, and set to a different config location, just rename/delete the directory that's configured.

stuXnet
  • 4,309
  • 3
  • 22
  • 31