💾 Archived View for freeshell.de › tldr › nvim.gmi captured on 2023-04-20 at 00:18:50. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
Neovim, a programmer's text editor based on Vim, provides several modes for different kinds of text manipulation.
Pressing `i` enters edit mode. `<Esc>` goes back to normal mode, which doesn't allow regular text insertion.
nvim {file}
<Esc>i
<Esc>{yy|dd}
<Esc>u
<Esc>/{search_pattern}<Enter>
<Esc>:%s/{regular_expression}/{replacement}/g<Enter>
<Esc>:wq<Enter>
<Esc>:q!<Enter>
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).