Neovim
Tags:
Quick reference for useful Neovim keybinds and tips & tricks.
Keybind | Description |
---|---|
cib | Change inside brackets |
ciq | Change inside quotes |
cis | Change current sentence |
_ | Go to the beginning of the line (first character) |
ZZ | Save and close (works also on splits) |
ZQ | Close without saving |
:s/foo/bar/ | Find & replace |
:s/foo/bar/gc | Find & replace with confirmation |
I & A | Insert at the beginning/end of the line |
P | In visual mode -> paste but does not copy the selection |
"_d | Delete without yanking |