Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to go back through the Jetbrains IDE "first time"

I accidentally exited the "complete installation" section of CLion before I managed to finish. I got to this point:

CLion - configure MinGW/Cygwin, CMake and GDB

When I got here, I realized that I hadn't installed g++ on Cygwin, so I paused to install g++. I also closed the Customize CLion window.

Now whenever I open CLion, it skips straight to the welcome menu:

CLion - Welcome Menu

How can I get back and go through the Customize Clion as if I had just done so the first time?

Note that this is not specific to CLion, but applies at least to Intellij and likely most of Jetbrain's IDEs.

like image 312
Justin Avatar asked Sep 29 '15 02:09

Justin


People also ask

How do I switch between projects in Pycharm?

To switch between open projects, you can use the following commands of the Window menu: Window | Next Project Window Ctrl+Alt+] Window | Previous Project Window Ctrl+Alt+[

How do you restart a Jetbrain?

From the main menu, select File | Manage IDE Settings | Restore Default Settings. Alternatively, press Shift twice and type Restore default settings . Click Restore and Restart. The IDE will be restarted with the default configuration.

How do I get the main menu back in IntelliJ?

If you hide the main menu, you can still access it with the corresponding action: press Ctrl+Shift+A and search for main menu.


1 Answers

As far as I know, there is no UI way to reinvoke this wizard again. Maybe because it's not really a common use case to need to go through this wizard again.

However you can fool IntelliJ (or other Jetbrains IDEs) into displaying the set-up wizard again by deleting its configuration directory. The config directory is typically located in user's home directory (~/.IntelliJIdea14 for IntelliJ for instance), though it may differ based on your platform. See this page for list of directories Jetbrains IDEs use.


Also note that the directory stores your global settings, so this is probably appropriate action only if you just installed the product but accidentally exited the set-up wizard and need to get it back again.

And as Justin mentions in the comment, it will also remove the licence, so you will need to enter it again afterwards.

There may be just one specific file or configuration entry in one of the files that need to be deleted/changed however given the amount of files it would probably be like looking for a needle in a haystack :)


TLDR (v2020.1+)

Delete the IDE config directory to get the IDE to think it's the first time it's being opened:

  • Linux: ~/.config/JetBrains/<product><version>
  • Mac: ~/Library/Application Support/JetBrains/<product><version>
  • Windows: %APPDATA%\JetBrains\<product><version>
like image 148
Bohuslav Burghardt Avatar answered Oct 13 '22 18:10

Bohuslav Burghardt