Skip to content

Commit

Permalink
Update chapter 02.
Browse files Browse the repository at this point in the history
  • Loading branch information
supdrewin committed Apr 7, 2022
1 parent 66ca4f1 commit 03f50f9
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions ch-02.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ which vim
$ pacman -S vim
```

### 实际操作
### 开始吧

来看看这段文字:

Expand All @@ -39,7 +39,9 @@ I'm lucky! abc
This is Vim!
```

##### 我们来尝试将这段文字写入 `hello.txt`
##### 插入模式 (INSERT)

我们来尝试将这段文字写入 `hello.txt`

1. 新建并编辑它:`vim hello.txt`

Expand All @@ -50,7 +52,7 @@ This is Vim!
如果你想在编辑文件前创建它,可以 `touch hello.txt`,这里
`touch` 将会创建一个名为 `hello.txt` 的空白文件。

2. 先输入 `i` 进入 `INSERT` 插入模式
2. 先输入 `i` 进入插入模式

我们刚进入 `vim` 时默认是 `NORMAL` 模式,还不能像记事本一样编辑
代码,当然这个模式有更多功能,这个待会讲。
Expand Down Expand Up @@ -83,7 +85,11 @@ $ cat hello.txt

如果一切顺利你将看到与之前那段文字一样的输出。

##### 在 NORMAL 模式下操作
##### 命令模式 (COMMAND)

参见上面的第五步。

##### 普通模式 (NORMAL)

注意到第二行末尾的 `abc` 了吗?让我们来把它删掉!

Expand Down

0 comments on commit 03f50f9

Please sign in to comment.