Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I remove line annotations behind cursor in Intellij 2019.1?

After updating to IntelliJ IDEA 2019.1 on macOS I see behind the cursor the line commit message (or annotations). How can I disable it?

<CURSOR> <USER>, <DATE> <TIME> <COMMIT MESSAGE>

<CURSOR> Name, 2019-03-07 09:41 ABC-1234 Did do something

I had to remove some parts

like image 299
Robert Avatar asked Apr 03 '19 09:04

Robert


People also ask

How do I make my cursor normal in IntelliJ?

You can turn off cursor blinking by going to Settings, Editor, General, Appearance and untick Caret blinking .

How do I remove highlights in IntelliJ?

By default, IntelliJ IDEA highlights all detected code problems. Hover the mouse over the widget in top-right corner of the editor and select another level from the Highlight list: None: turn highlighting off.

How do I get rid of the black cursor in IntelliJ?

Case 1: block cursor is set be default. Case 2: you are in Overwrite mode. Assign shortcut to Preferences -> Keymap -> Toggle Insert/Overwrite action and press shortcut.


1 Answers

You have installed GitToolBox third-party plug-in which provides this feature:

Blame inlined in active editor - show blame for line at caret in active editor

Either disable the plug-in or configure its options as shown below:

blame

like image 56
CrazyCoder Avatar answered Oct 21 '22 17:10

CrazyCoder