Skip to content

Commit

Permalink
Add key for go to insert mode
Browse files Browse the repository at this point in the history
  • Loading branch information
wsdjeg committed Apr 2, 2018
1 parent bde62ef commit 717e616
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Vim 从入门到精通

> Vim from zero to hero
本文链接:https://github.com/vim-china/hello-vim
作者:wsdjeg & 贡献者
- 本文链接:<https://github.com/vim-china/hello-vim>
- 作者:wsdjeg & 贡献者

<!-- vim-markdown-toc GFM -->

Expand All @@ -14,7 +15,6 @@

<!-- vim-markdown-toc -->


Vim 的教程相对比较零散,系统的教程比较少,我也阅读过不少教程,走过很
多弯路。借着 Vim-china 组织组建这一契机,整理下自己学习过的内容,
分享给大家,
Expand All @@ -41,6 +41,16 @@ Vim 打开是默认的模式是 Normal 模式,在这一模式下,按键不

### 如何在模式之间切换

普通模式是 Vim 默认模式,任何模式下通过 `<ESC>` 按键都可以切换到普通模式。
想要切换到插入模式,方法有很多。比较常用的按键如下:

| 按键 | 描述 |
| ---- | -------------------- |
| `i` | 在当前光标字符前插入 |
| `a` | 在当前光标字符后插入 |
| `I` | 在当前行首插入 |
| `A` | 在当前行为插入 |

## 基本概念

## 基本操作
Expand All @@ -50,5 +60,3 @@ Vim 的各种移动命令主要时在 Normal 模式下。最基本的移动命
h、j、k、l 按键。

当然 Vim 还有其他常用的移动光标的按键:


0 comments on commit 717e616

Please sign in to comment.