# Lesson 2 : 重覆上一次的操作
###### tags: `TextEditor` `VIM` `NeoVIM`
## 1.重覆上一次的操作
|Command | Description |
|----------|----------|
| . | 重覆上一次的操作 |
:::info
:bulb: 由Insert mode 開始到回到Normal mode 的中間操作都算在上一次的操作
:::

## 2.如果要在每一行的尾巴加上分號
|Command | Description |
|----------|-----------------|
| A | 游標移至該行最末字元並進入insert mode |

## 3.重覆縮進
|Command | Description |
|----------|-----------------|
| >G | 增加從當前行到文件尾的縮進 |
