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.
Asked
Active
Viewed 203 times
-4

54Y4N
- 19
- 6
-
1Read the `vim` documentation. – Jesper Juhl Sep 17 '22 at 06:40
1 Answers
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