tldr/pages/common/nvim.md

39 lines
940 B
Markdown
Raw Normal View History

2018-08-28 13:21:43 +01:00
# nvim
> Neovim, a programmer's text editor based on Vim, provides several modes for different kinds of text manipulation.
2022-10-17 05:16:41 +01:00
> Pressing `i` in normal mode enters insert mode. `<Esc>` goes back to normal mode, which doesn't allow regular text insertion.
> See also: `vim`, `vimtutor`, `vimdiff`.
2019-06-04 10:00:14 +01:00
> More information: <https://neovim.io>.
2018-08-28 13:21:43 +01:00
- Open a file:
2022-12-04 09:12:49 +00:00
`nvim {{path/to/file}}`
2018-08-28 13:21:43 +01:00
- Enter text editing mode (insert mode):
`<Esc>i`
- Copy ("yank") or cut ("delete") the current line (paste it with `P`):
`<Esc>{{yy|dd}}`
2022-10-17 05:16:41 +01:00
- Enter normal mode and undo the last operation:
2018-08-28 13:21:43 +01:00
`<Esc>u`
- Search for a pattern in the file (press `n`/`N` to go to next/previous match):
`<Esc>/{{search_pattern}}<Enter>`
- Perform a regular expression substitution in the whole file:
2018-08-28 13:21:43 +01:00
`<Esc>:%s/{{regular_expression}}/{{replacement}}/g<Enter>`
2018-08-28 13:21:43 +01:00
2022-10-17 05:16:41 +01:00
- Enter normal mode and save (write) the file, and quit:
2018-08-28 13:21:43 +01:00
`<Esc>:wq<Enter>`
- Quit without saving:
`<Esc>:q!<Enter>`