tldr/pages/common/vim.md
Leandro Ostera 2ba4397edc Updates vim and vimtutor pages (#926)
* Updates vim and vimtutor pages

* Easy peasy.

* Use <Enter> instead of <Cr>

* Show help command.

We might not be able to help you move around
but the interactive help provided by vim is
pretty good, so helping people find it might
be a good idea.

* Reorder commands and lowercase help
2016-08-21 16:00:09 +02:00

489 B

vim

Vi IMproved, a programmer's text editor.

  • Open a file with cursor at the given line number:

vim {{file}} +{{linenumber}}

  • Open multiple files at once, each file in its own tab page:

vim -p {{file1}} {{file2}} {{file3}}

  • Open a file in read-only mode:

view {{file}}

  • Enter normal text editing mode (insert mode):

<Esc> i

  • Search in file:

/{{search_string}}<Enter>

  • Save and Exit vim:

<Esc> :wq <Enter>

  • Open interactive help:

<Esc> :help <Enter>