Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arthurgousset/vim
✨ vim cheat sheet
https://github.com/arthurgousset/vim
Last synced: 18 days ago
JSON representation
✨ vim cheat sheet
- Host: GitHub
- URL: https://github.com/arthurgousset/vim
- Owner: arthurgousset
- Created: 2023-11-15T11:14:52.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-15T11:14:55.000Z (about 1 year ago)
- Last Synced: 2024-10-14T01:12:42.838Z (about 1 month ago)
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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. `{` -> `}`)