vim_current_word icon indicating copy to clipboard operation
vim_current_word copied to clipboard

Plugin highlighting word under cursor and all of its occurences

Results 6 vim_current_word issues
Sort by recently updated
recently updated
newest added

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...

![2021-05-20-013607_283x173_scrot](https://user-images.githubusercontent.com/3514015/118893882-da1c5200-b90b-11eb-933e-9a2332eb63ec.png) `

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...

enhancement
volunteer needed

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...