vim_current_word
vim_current_word copied to clipboard
Plugin highlighting word under cursor and all of its occurences
When the cursor is on a word and twin words are highlighted, and when I then disable highlighting by running `:let g:vim_current_word#enabled=0`, the highlighted words keep being highlighted. Expected behavior...
> Helps predict how vim word movements (`w`, `e`, `b`) will behave > Plays well with * and # However, this plugin will highlight `I爱U` as a word, ( because...
 `
I was wondering if it is possible to exclude language keywords from highlighting (as an option). As an example, when being in a python file, I find it unnecessary that...
If I add this to my init.vim: hi CurrentWord ctermbg=NONE Then the current word is still highlighted. But if I call it from within nvim it disables fine. I want...