How to open a project in Intellij from taskbar? - intellij-idea

I recently updated the Intellij-idea from 13.1 to 13.1.7.
When I try to open recently closed projects by right-click the Intellij icon in taskbar - getting this error in Event log
Unauthorized Operation: The command line launcher is outdated. Please refresh it (via Tools | Create Command-line Launcher)
It used to work fine with 13.1.

Related

How to view console output in Intellij

How to view console output in intellij 2021.2.3 community edition?
I am hitting debug button but the console just shows me the status of gradle tasks.
There is a similar question here (How to show missing Console output in latest IntelliJ update) but the button mentioned does not seem to exist any more in the latest version.
see screenshot

How to open the IntelliJ IDEA in Windows?

I installed IntelliJ IDEA for my windows 10 successfully. But when I click to open the IntelliJ IDEA it doesn't open and not show any single error message pop up.
Can I get an answer why is that, please?
And How to open it in Windows?
Open Windows command prompt and start IDE from command line using idea.bat script, located in IDE_HOME/bin directory and examine the output to see the error message it reports if it does not start.

Integrated terminal disappeared in idea 2018

I have installed intellij idea 2018.1. I can't open integrated terminal shell. It's useful window for me.
There is no button in left drop-up menu. There are: Event Logs, Favorites, Project, but no terminal :(
Terminal is a plugin. See the plugin section to enable it.

Grails application is not found after updating to IntelliJ IDEA Ultimate 2016.2

I have updated my IntelliJ IDEA Ultimate to the 2016.2 version.
I had a Grails 3 project and now when I open the IDE I get the following error when trying to run my project:
Error running Grails: My_Project: Grails application is not found
I can still open the terminal and run the project manually, but it seems that IntelliJ IDEA no longer recognises my Grails application. When going to "Edit configurations...", in "Application" it says "[none]" and I can't select anything.
Grails Version: 3.1.9
Groovy Version: 2.4.7
JVM Version: 1.8.0_66
A Simple solution to this is to refresh the gradle projects.
You can do this by popping out the little gradle tab and hitting the "Refresh All Gradle Projects"
I run into the same problem always when i restart intellij. Running grails clean command from the terminal fixed it.
First, re-import the project into IntelliJ 2016.2. Choose the build.gradle file for the import. Use the gradle wrapper or a local gradle installation, where you have given IntelliJ the path to the locally installed Gradle. Let IntelliJ re-index everything. Wait until you see no further indexing on the bottom of the screen.
Second, run the application once, with no edit configuration. After this completes with error, you should be able to choose Run -> Edit Configuration / Application.
Third, you can go into the project pane to the grails-app/init/app-name/Application.groovy file and right-click on that and choose Run. After that, an edit configuration will be created.
Finally, you can try to invalidate cache and restart. (This has nothing to do with Edit Configuration, but sometimes the gradle and/or .idea caches get out of sync.)
I had the same problem after updating to IntelliJ Ultimate 2019.2.
It seems that the "little gradle tab" of the accepted answer no longer exists.
The reason in my case was that the Gradle Plugin had been disabled by the update process.
Resolution: Hit Help > Find Action > Type gradle. You should see a line "Gradle" and a ON-OFF switch at the end of that line.
Enable it and restart IntelliJ solved my problem.

Can't get Changes tool window (Alt+9) to show on IntelliJ IDEA

I can't get the Changes tool window to show on this project.
The project is imported "from sources" and has no facet and no sdk. Which is ok because I'm only editing it in the IDE and running from the terminal.
I'm on Windows 8.
The tool window does show when I open another java web maven project there.
It also does show for the first (no sdk) project when I'm on Ubuntu.
What might the Changes tool window not like about my project?
The IDE wasn't aware of Git in my project.
That happened because the directory I import this project from isn't the same as the Git repository directory, the former is inside the later.
I fixed it in: VCS > Enable Version Control Integration