summaryrefslogtreecommitdiffhomepage
path: root/zh-cn/vim-cn.html.markdown
diff options
context:
space:
mode:
authorzhysan <zhysan@users.noreply.github.com>2017-05-18 15:56:40 +0800
committerven <vendethiel@hotmail.fr>2017-05-18 09:56:40 +0200
commitb2cb3528857b673a8c9921bae8f5f6c9cb6efd69 (patch)
treee733e92acf8bb99fc92978377018b7c2d6fd3ef5 /zh-cn/vim-cn.html.markdown
parent6a1ce1d98aa50a29415959302e6a9c3521d8c7d2 (diff)
Update vim-cn.html.markdown (#2726)
fix description error of "w", "b", "e"
Diffstat (limited to 'zh-cn/vim-cn.html.markdown')
-rw-r--r--zh-cn/vim-cn.html.markdown10
1 files changed, 6 insertions, 4 deletions
diff --git a/zh-cn/vim-cn.html.markdown b/zh-cn/vim-cn.html.markdown
index 5298351a..569ad1bf 100644
--- a/zh-cn/vim-cn.html.markdown
+++ b/zh-cn/vim-cn.html.markdown
@@ -56,14 +56,16 @@ lang: zh-cn
t<字符> # 向前跳移到 <字符> 的左侧
# 例如,
- f< # 向前跣到 < 上
+    f<               # 向前跳移到 < 上
t< # 向前跳移到 < 的左侧
# 按词移动
+ # 默认一个单词由字母,数字和下划线组成
- w # 前移一个词
- b # 后移一个词
- e # 移到当前词的末尾
+    w               # 移动到下一个词首
+    b               # 移动到前一个词首
+    e               # 移动到下一个词尾
+
# 移动的其它命令