nvim: add page (#2264)

italian
L Day 2018-08-28 12:21:43 +00:00 committed by Owen Voke
parent 9bc8009b45
commit 39bb938c0b
1 changed files with 36 additions and 0 deletions

36
pages/common/nvim.md Normal file
View File

@ -0,0 +1,36 @@
# 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:
`nvim {{file}}`
- Enter text editing mode (insert mode):
`<Esc>i`
- Copy ("yank") or cut ("delete") the current line (paste it with `P`):
`<Esc>{{yy|dd}}`
- Undo the last operation:
`<Esc>u`
- Search for a pattern in the file (press `n`/`N` to go to next/previous match):
`<Esc>/{{search_pattern}}<Enter>`
- Perform a regex substitution in the whole file:
`<Esc>:%s/{{pattern}}/{{replacement}}/g<Enter>`
- Save (write) the file, and quit:
`<Esc>:wq<Enter>`
- Quit without saving:
`<Esc>:q!<Enter>`