Update vim-cn.html.markdown (#2726)

fix description error of "w", "b", "e"
This commit is contained in:
zhysan 2017-05-18 15:56:40 +08:00 committed by ven
parent 6a1ce1d98a
commit b2cb352885

View File

@ -56,14 +56,16 @@ lang: zh-cn
t<字符> # 向前跳移到 <字符> 的左侧
# 例如,
f< # 向前跣<
   f<               # 向前跳移<
t< # 向前跳移到 < 的左侧
# 按词移动
# 默认一个单词由字母,数字和下划线组成
w # 前移一个词
b # 后移一个词
e # 移到当前词的末尾
   w               # 移动到下一个词首
   b               # 移动到前一个词首
   e               # 移动到下一个词尾
# 移动的其它命令