Open practicalli-johnny opened 6 months ago
Multiple cursors is a visual way to change multiple lines or matching patterns concurently.
There are many ways to achieve similar results with vim-style editing which are useful to learn
gn textobject - e.g. gnw to select next word
gn
gnw
change the next found occurrence with cgn, skip the next matching word with n, apply the change with . - it seems that cgn is dot-repeatable.
cgn
n
.
Neovim 0.10 will be introducing multiple cursors feature. Purists claim there is no need for multiple cursors, as vim can do everything, but finding examples can be challenging.
Neovim 0.10 will be introducing multiple cursors feature.
Purists claim there is no need for multiple cursors, as vim can do everything, but finding examples can be challenging.
Multiple cursors is a visual way to change multiple lines or matching patterns concurently.
There are many ways to achieve similar results with vim-style editing which are useful to learn
Changing a pattern in multiple places
gn
textobject - e.g.gnw
to select next wordchange the next found occurrence with
cgn
, skip the next matching word withn
, apply the change with.
- it seems thatcgn
is dot-repeatable.