Cursorword in Visual Mode #1609
-
Contributing guidelines
Module(s)mini.cursorword QuestionIs there a way to make something like visimatch.nvim for cursorword? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Although interesting, it would require completely different implementation route which would increase complexity too much. Besides, I don't really think that immediately seeing matches for visual selection is as common as seeing current word (which proved to me very valuable to spot typos quickly). And it will not really fit the "cursorword" name. Usually I encounter the need for arbitrary matches only if I want to act on them: navigate, delete, change, etc. For that use case there is |
Beta Was this translation helpful? Give feedback.
Although interesting, it would require completely different implementation route which would increase complexity too much. Besides, I don't really think that immediately seeing matches for visual selection is as common as seeing current word (which proved to me very valuable to spot typos quickly). And it will not really fit the "cursorword" name.
Usually I encounter the need for arbitrary matches only if I want to act on them: navigate, delete, change, etc. For that use case there is
*
in Visual mode: visually select and press*
. I think this is enough of an alternative.