From ef1a8b7f7cb4d2965cc62163e5044caa0052ac8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Tue, 11 May 2021 15:57:29 +0800 Subject: [PATCH] =?UTF-8?q?post:=E8=A1=A5=E5=85=85=E4=B8=A2=E6=8E=89?= =?UTF-8?q?=E7=9A=84=E5=91=BD=E4=BB=A4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/_posts/vim-tips.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/_posts/vim-tips.md b/source/_posts/vim-tips.md index 782aa10..259ccb0 100644 --- a/source/_posts/vim-tips.md +++ b/source/_posts/vim-tips.md @@ -29,6 +29,8 @@ VIM是Linux系统中最常用的命令行编辑器,但是大多数人都会觉 | `I` | 在光标所在行的行首进入插入模式。 | `Insert` | | `a` | 在光标所在的字符之后的位置进入插入模式。 | `append after` | | `A` | 在光标所在行的行尾进入插入模式。 | `Append` | +| `o` | 在光标所在行的下方新建一行进入插入模式。 | | +| `O` | 在光标所在行的上方新建一行进入插入模式。 | | | `R` | 在光标所在的字符位置进入替换模式,新的输入将从光标所在的字符开始替换。 | `Replace` | | `c` | 执行删除操作以后进入插入模式,要删除的内容由其后跟随的Text Object或者Motion确定。 | `change` | | `v` | 在光标所在的位置进入可视模式,光标所在的字符不在被选中的块中。 | `visual` |