Skip to content

Commit

Permalink
更换行首、行尾快捷键;命令模式下保留中文输入状态
Browse files Browse the repository at this point in the history
  • Loading branch information
yangyangwithgnu committed Nov 28, 2015
1 parent 2bc16c0 commit c8980be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ [email protected]

##【版本】
----
* v0.1.3,2015-11-08,新增:0)光标快速移至行首的快捷键 lh 与光标右移键 l 冲突,导致光标左移操作等待,现添加 <Leader> 规避该问题;1)中文输入状态导致命令模式无效,借助插件解决该问题。
* v0.1.3,2015-11-08,新增:0)光标快速移至行首的快捷键 lh 与光标右移键 l 冲突,导致光标左移操作等待,现添加 \<Leader> 规避该问题;1)中文输入状态导致命令模式无效,借助插件解决该问题。
* v0.1.2,2015-01-18,新增。0)重写“内容查找”,让匹配项具备上下文提醒能力;1)“快速输入结对符”扩充快速选中结对符内文本的相关知识;2)增加支持分支 undo 的介绍;3)增加持久化保存 undo 历史的介绍;4)全文结构调整,将“内容查找”和“内容替换”移至“4 代码分析”,将“快速输入结对符”更名为“快速编辑结对符”,并移至“8 其他辅助”。
* v0.1.1,2014-12-27,新增/修正。0)重写“代码收藏”章节,停用过时的 visual mark,启用用户体验更优的 vim-signature(@arcticlion,谢谢);1)新增“基于语义的导航”章节,YCM 新增该项功能;2)调整“5.2 模板补全”章节结构,UltiSnips 不再提供预定义代码模板;3)protodef 插件更新,修复 protodef 生成成员函数实现的返回语句错误的问题;4)给出安装插件 vim-instant-markdown 的详细步骤。
* v0.1.0,2014-10-13,新增。发布初始版本。
Expand Down Expand Up @@ -1134,7 +1134,7 @@ for (auto ${2:citer} = ${1:c}.cbegin(); ${3:$2} != $1.cend(); ${4:++citer}) {
endsnippet
# 通过下标遍历容器
snippet For
for (auto ${2:i} = 0; $2 != ${1}.size(); ${3:++}$2) {
for (decltype($1.size()) ${2:i} = 0; $2 != ${1}.size(); ${3:++}$2) {
${4:TODO}
}
endsnippet
Expand Down

0 comments on commit c8980be

Please sign in to comment.