Home > Software engineering >  Stop visual studio 2019 from higlighting occurences of word under the cursor
Stop visual studio 2019 from higlighting occurences of word under the cursor

Time:10-27

Visual studio 2019 keeps on highlighting occurences of the word under my cursor in the current file: enter image description here

Is there a way I can get rid of this?

CodePudding user response:

Tools -> Options -> Text Editor -> C/C -> Advanced -> References -> "Disable Reference Highlighting"

Set to true.

  • Related