Reputation: 1869
Like most, i have enabled hlsearch
in vimrc.
so, all my text searches are highlighted.
But, when i use 'f'
command to move to a letter and use ';'
command to repeat, vim highlights all the occurrences of the character overriding my previous text search.
how can i make vim just move to the character without interfering with my text search keyword?
Upvotes: 1
Views: 131
Reputation: 172600
You've likely found a bug in the ft_improved plugin; you should report that to the plugin's issue tracker.
Alternatively, you can also check out an alternative; Extended-FT and Fan,FingTastic are two. Also, using vims f command over multiple lines has some light-weight implementations in the answers.
Upvotes: 3