Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dofy/learn-vim
Learning Vim. A Hands-On Tutorial of Vim.
https://github.com/dofy/learn-vim
beginner book chinese editor education learning programming tips tutorial vi vim
Last synced: 6 days ago
JSON representation
Learning Vim. A Hands-On Tutorial of Vim.
- Host: GitHub
- URL: https://github.com/dofy/learn-vim
- Owner: dofy
- License: cc0-1.0
- Created: 2016-01-13T08:14:10.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T14:53:53.000Z (about 1 year ago)
- Last Synced: 2024-11-21T05:02:39.222Z (22 days ago)
- Topics: beginner, book, chinese, editor, education, learning, programming, tips, tutorial, vi, vim
- Language: Vim Script
- Homepage: https://dofy.gitbook.io/learn-vim/
- Size: 160 KB
- Stars: 1,687
- Watchers: 40
- Forks: 238
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wiki-IT - dofy/learn-vim
README
# Vim Hands-On Tutorial (Learning Vi and Vims)
![GitHub Repo stars](https://img.shields.io/github/stars/dofy/learn-vim)
![GitHub](https://img.shields.io/github/license/dofy/learn-vim)
![GitHub contributors](https://img.shields.io/github/contributors/dofy/learn-vim)
![GitHub commit activity (branch)](https://img.shields.io/github/commit-activity/m/dofy/learn-vim)[đēđ¸ English](en/README.md) | [đ¨đŗ įŽäŊä¸æ](zh-CN/README.md)
## Intro
In my personal experience of learning Vim, it is very difficult to learn Vim by
reading documentation or watching other people operate it. You have to be in the
real world, in real scenarios, to familiarize yourself with the commands and
master them.Therefore, to meet the needs of learning and operating at the same time, all the
files in the project are in Markdown format, which can be read as an explanation
document, and can also be opened in Vim. You can read it as an explanatory
document, and you can also use Vim to open the files for actual operation (the
latter is recommended).## How to Use
1. clone project to local
```bash
git clone https://github.com/dofy/learn-vim.git
```2. go to the project folder
```bash
cd learn-vim/en
```3. open the file `chapter01.md` in Vim
```bash
vim chapter01.md
```## Formatting Rules
```Markdown
## Major titles represent a large category
### Subtitles represent subcategories under this major category
Text without any formatting is a normal description for reading purposes only.
> The text embedded in the quoted block is an instruction to operate, and you
> can follow what is mentioned in it
>
> Also operators or commands are included in symbols like `:w`.The < and > in commands such as f do not need to be typed, represents a
variable, i.e. you can type fa or fb or fC_Note: Commands are case-sensitive (matters requiring attention appear in
symbols such as the current line)_```
> [!NOTE]
>
> If you already have your own `.vimrc` file (refer to
> [Chapter 4](en/chapter04.md)) and have changed some of the defaults in it, it
> may cause some operations to not match the tutorial. In this case, you can run
> `Vim` with the following command:
>
> ```bash
> # Do not load the configuration file
> vim -u NONE
> # Load a specific configuration file
> vim -u
> ```## Index
### Basic operations
1. [Chapter 1: Cursor Movement](en/chapter01.md)
1. [Chapter 2: Opening Files, Finding Content](en/chapter02.md)
1. [Chapter 3: Modify and Save Documents](en/chapter03.md)
1. [Chapter 4: Some Tips](en/chapter04.md)
1. [Chapter 5: Split Screen and Tabs](en/chapter05.md)
1. [Chapter 6: Block Operations](en/chapter06.md)
1. [Chapter 7: Macros in Vim](en/chapter07.md)### Additional content
1. [Vim Modes](en/vim-modes.md)
1. [Vim plugins](en/plugin.md)
1. [Plugin Recommendations](en/plugins/index.md)
1. [NERDTree](en/plugins/nerdtree.md)
1. [EasyAlign](en/plugins/easyalign.md)
1. [Airline & Themes](en/plugins/airline.md)
1. [surround.vim](en/plugins/surround.md)> [!NOTE]
>
> - In the tutorials, you can navigate to the next chapter or related chapters,
> and locate the file name to open it by executing `gf` (goto file). Related
> files
> - You can always open the relevant chapter to view, and then use `:bp` to go
> back to the previous file (this command will (This command is covered in
> [Chapter 2](en/chapter02.md)).
> - You may get a file not saved error when you exit the tutorial with `:q` or
> `:qa`, try adding `!` to the end of the command!## Recommend a few Vim configurations
- [dofy / **7th-vim**][7th-vim]
- [kepbod / **ivim**][kepbod]
- [chxuan / **vimplus**][chxuan]
- [SpaceVim / **SpaceVim**][spacevim]## Recommends a couple of other excellent Vim tutorials
- Run `vimtutor` on the console. This is the official hands-on tutorial for Vim.
- [Concise Vim Practice Tips][coolshell] Great tutorial to get started!
- [Vim Galore][vimgalore] Frequently updated, a must-read for Vim.
- [Daily Vim][liuzhijun] 30 articles, the content is more complete!
- [A book for learning the Vim editor][learnvim] Another Learn Vim (English)
- [Open Vim][openvim] Interactive Vim Tutorials
- [QuickRef.ME/vim][quickref] Vim cheatsheet## Cheatsheets
> [Vim Cheat Sheet][cheatsheets1]
> [A Great Vim Cheat Sheet][cheatsheets2]
> [![003][cheatsheets3]][cheatsheets3]
> [![004][cheatsheets4]][cheatsheets4]
> [![005][cheatsheets5]][cheatsheets5]
## Star History
[![Star History Chart][star-history-chart]][star-history]
**Thanks again for your interest! If you love, please share. Love life, love
VIM!**[7th-vim]: https://github.com/dofy/7th-vim
[kepbod]: https://github.com/kepbod/ivim
[chxuan]: https://github.com/chxuan/vimplus
[spacevim]: https://github.com/SpaceVim/SpaceVim
[coolshell]: http://coolshell.cn/articles/5426.html
[vimgalore]: https://github.com/mhinz/vim-galore
[liuzhijun]: http://liuzhijun.iteye.com/category/270228
[learnvim]: https://github.com/iggredible/Learn-Vim
[openvim]: https://openvim.com/
[quickref]: https://quickref.me/vim
[cheatsheets1]: https://vim.rtorr.com/lang/zh_tw
[cheatsheets2]: https://vimsheet.com/
[cheatsheets3]: https://people.csail.mit.edu/vgod/vim/vim-cheat-sheet-en.png
[cheatsheets4]: https://cdn.shopify.com/s/files/1/0165/4168/files/preview.png
[cheatsheets5]:
https://michael.peopleofhonoronly.com/vim/vim_cheat_sheet_for_programmers_screen.png
[star-history]: https://star-history.com/#dofy/learn-vim&Date
[star-history-chart]:
https://api.star-history.com/svg?repos=dofy/learn-vim&type=Date