How can I move back to old intellij idea UI? - intellij-idea

I've got a new Intellij Idea UI (I applied for testing) but I want to move back to the old one and can't find a way to do that.
How can I disable a new UI?
Version: 2022.2.1

Go to Help | Find Action | Registry, start typing the key name for ide.experimental.ui, then disable it. Restart the IDE.

Related

How to disable automatic rebuild in IntelliJ IDEA?

When I resized the window of IntelliJ IDEA or switch to another tab, it automatically rebuild the project. I have 2 modules in the same project, and it only auto rebuilds in 1 module :) . I want to know how to disable this. Thank you very much.
Probably rebuild is triggered by save action? Please check settings under "Settings/Preferences | Appearance & Behavior | System Settings"

How to disable changelist indicator for new changes

Since i connected my project with github this annoying indicator next to my code shows up whenever i make a change in my project. I looked for answers but did not find one. Is there any way to disable this?
Annoying_green_indicator
You can go to Preferences | Editor | General and disable "Highlight modified lines in the gutter"

Change default tool window behaviour in IntelliJ IDEA 2016

Every time I open a new project in IntelliJ IDEA, the first time I open a particular tool window, for example 'Maven Projects', it appears in 'pinned' mode and remains visible until either I close it, or I go to the view settings for the window (the little cog) and deselect "Pinned Mode". I don't want any of my tool windows to be pinned so this gets a little annoying.
Do you know of a way to change the default behaviour of new project / tool windows?
As far as IJ 2016.2 I don't know about a dedicated setting for this. However I used an approach which allows you to define a default layout for all projects. Although the window-pinning works, which is what this question is about, some may not be persisted, such as Group Modules setting in the maven tool-window.
Nonetheless, to configure the pinning, you need to do 2 simple things, which you can also see in the GIF below:
1) Manually go and unpin all desired windows
2) Open the Windows menu and select Store current layout as default
P.S. If you'll be using tool-windows that you've never opened before, or install new plugins which add their own tool-windows, just follow these steps again.

Intellij 13 merge conflicts dialog loses gets stuck

I am having a problem with Intellij 13 when merging conflicts. When I apply my last merge change, Intellij tries to show me the "Save and finish" dialog, but apparently the merge window remains above that one (which loses its focus). At that point I cannot click on any part of Intellij and I have to kill the process.
I remember reading something about this and a change to idea.properties was the solution proposed, but I cannot find that discussion again.
Is there anyone who has a solution for this or remember the right property to add to idea.properties?
Thanks!
I was actually able to find it.
On a mac you need to add this property to the idea.properties file:
ide.mac.message.dialogs.as.sheets=false
And the problem disappear.
Thanks!
Roberto

How to rerun programmatically the program (intellij idea plugin)

I want to programmatically rerun(There is a command for this also you can use ctrl-f5) Below is a picture of rhis button in idea
So how I can run this action by myself?
from the answer on intellij idea development forum
Hi Evgeniy,
You should use ExecutionManager.restartRunProfile() for that.
Default IJ implementation achieves that via RestartAction (the one from your screenshot).
Denis