1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/vim.md
Ivan Miskovic 38de59f8cd vim doc grammar fix
Changed

`a programmers text editor`

to

`a programmer's text editor`
2016-01-05 13:29:24 +13:00

19 lines
346 B
Markdown

# 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 it's own tab page
`vim -p {{file1}} {{file2}} {{file3}}`
- open a file in read-only mode
`view {{file}}`
- exiting vim
`[Esc] (to switch to normal mode), then :q`