Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arthurgousset/vim

✨ vim cheat sheet
https://github.com/arthurgousset/vim

Last synced: 18 days ago
JSON representation

✨ vim cheat sheet

Awesome Lists containing this project

README

        

Vim (Cheat Sheet)

Create file:

```sh
vim README.md
^file name
```

Save file: `:w`

Save file and exit vim: `:wq`

Fold (collapse) code: `z``c` (close) `z``o` (open)

Jump to start of line: `_`

Jump to end of line: `$`

Jump to enclosing bracket: `%` (e.g. `{` -> `}`)