DEV Community

Discussion on: GitLens: where have you been all my life!

Collapse
 
ptejada profile image
Pablo Tejada • Edited

Is a matter of getting used to it for sure. I've been using PHPStorm for so long that almost everything comes to me naturally. What you are describing is the code inspection highlights which you have full control of.

You can edit any inspection warning/error directly from the editor without even having to go the setting page:

  1. Place your cursor over the highlighted symbol
  2. Press Alt + Enter to open the intention options or context menu.
  3. Highlight one of the intentions with the arrow keys(/), an intention usually has an orange light bulb next to it, then press the key to see additional options.
  4. In the additional options dropdown you will have multiple options which includes disabling the inspection rule altogether and an action that takes you directly to the configuration section to edit the specific inspection rule among other actions.
Thread Thread
 
eerk profile image
eerk

Thanks for the hint! Of course it's always a matter of getting used to software. PHPstorm certainly has gazillions of options. I just find VS Code more intuitive, with less menus buried deep within other menus.