Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turn off highlights

Tags:

phpstorm

I want to turn off PHPStorm's annoying highlighting for non-error related things.

enter image description here

I read their docs, which said to go to preferences->editor->inspections. I deselected all for SQL, yet I still get this green highlighting for no reason:

enter image description here

How do I disable this? It's quite distracting.

like image 761
user3871 Avatar asked Jun 10 '15 23:06

user3871


People also ask

Why can't I remove highlight in pdf?

Just open Acrobat from any web browser and follow these simple steps: Single-click on the area of highlighted text you wish to remove. A small toolbox will appear with two options, allowing you to change the color of your highlight or delete the highlight altogether. To remove your highlight, click the trash can icon.

Why can't I remove highlight in word?

When you are thinking how to get rid of highlight on word, select the clear formatting option. The highlighting of the text may be character shading. You have many options in MS Word to format your text. First of all, just select your highlighted text and then search for the Clear Formatting option.


1 Answers

That's Language Injection in action.

You can:

  • Remove/change background color at Settings (Preferences on Mac) | Editor | Colors & Fonts | General --> Code | Injected language fragment
  • Disable that particular injection rule altogether at Settings (Preferences on Mac) | Editor | Language Injections
like image 138
LazyOne Avatar answered Oct 02 '22 16:10

LazyOne