How to disable changelist indicator for new changes - intellij-idea

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"

Related

How can I move back to old intellij idea UI?

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.

How to enable sidebar changelog in WebStorm?

Today I added Material Theme plugin to WebStorm and I believe this is the reason behind changelist not appearing on the sidebar.
To be precise, this is what happens in IntelliJ when I make change to a specific line of code and click on the yellow bar that appeared after I removed the semicolon:
The change I made can also be seen under VCS -> Local History -> Show History menu option, which shows the diff between the previous and current version of that file.
However, performing the same action in WebStorm doesn't show the changelist/diff on the sidebar:
which means that the only way I can see it is by going to VCS -> Local History -> Show History which is very tedious:
I found being able to quickly revert/lookup the changes on the fly by clicking on that coloured bar really handy, could someone tell me if there is a setting in the IDE that enables that? I looked up and down but couldn't find anything relevant, perhaps I wasn't looking for the right keyword.
Thanks in advance.
Change markers are there for me when using Material UI plugin. Do you have Highlight modified lines in gutter enabled in Settings | Editor | General?

Remove automated closing bracket comments in IntelliJ IDEA

I'm seeing following happen when working in intelliJ IDEA with Dart based project
All comments there i.e // AppBar are auto generated, I assume for easier tracking of what closing brackets belong where. Weird bit is that I can't even highlight them, nor delete them and when I copy code they are not copied over.
Is there a way to disable this feature in the ide?
The checkbox is in Settings (Preferences) | Editor | General | Appearance, toggle 'Show closing labels in Dart source code'.
And in the vs code editor, change this setting to false
"dart.closingLabels": true
You can find this setting easily. Go setting and search(Ctrl+f) dart.closingLabels
Update 24.11.2019:
If you want to customize the closing label color, you can do this. In vscode, open your settings.json file and set this setting
"workbench.colorCustomizations": {
"dart.closingLabels": "#FF5733"
},

Remove PhpStorm blue tab underline

How can I remove the blue underline?
ATM you cannot.
It was introduced to make currently active tab more visible in Darcula GUI Theme (IDEA-131683, IDEA-103206) where tab backgrounds are too similar. Check comments there (mainly first ticket).
So far the best match would be https://youtrack.jetbrains.com/issue/IDEA-168708 -- watch this ticket (star/vote/comment) to get notified on any progress.
In meantime please try Active IntelliJ Tab Highlighter plugin -- it may provide such functionality (was created by one of the users before this new tab highlighting functionality was introduced) -- it's customizable so may not have such underline at all.
Your image link is broken.
Please, try to follow this path step by step:
File/Settings/Editor/Color Scheme/General
This General screen can remove with checkbox disable all underline
Also, you can look this image.
I hope have been helping you.
screenshot

PHPStorm move file from one split to another

I have 2 vertical splits and I would like to move a file from one split to another using the keyboard.
Is there any way of doing this?
Thanks!
Is there any way of doing this?
Yes.
P.S.
You can assign any shortcuts you want to those actions in Settings (Preferences on Mac) | Appearance & Behavior | Keymap
This question and several similar ones pop out regularly in the case of members of the IntellijIdea family of IDE's. I've seen it asked for example in the case of AndroidStudio.
Using an IntellijIdea-based IDE there is a general solution for finding any command without leaving the keyboard, and that is CTRL-SHIFT-a.
As soon as the dialog appears, in the case of this question it's sufficient to type move opp and then you can already hit ENTER to have the command executed.