nvim
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.
- Open a file:
- Enter text editing mode (insert mode):
- Copy ("yank") or cut ("delete") the current line (paste it with `P`):
- Undo the last operation:
- Search for a pattern in the file (press `n`/`N` to go to next/previous match):
- Perform a regular expression substitution in the whole file:
- Save (write) the file, and quit:
- Quit without saving:
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).