-4

Vim text editor In VIM text editor, everytime whenever I type ''typedef '', it gets highlighted automatically. How to fix this? I want to turn off word highlighting property in vim.

54Y4N
  • 19
  • 6

1 Answers1

0

Looks like you have the "highlight search" flag on and the last search was for typedef. You can turn the flag off with :set nohls.

You can inspect all settings with :set all.

You can read the help for highlight search with :help hls.

Jens
  • 69,818
  • 15
  • 125
  • 179