From 8f9d2429ddc4352715d6154b44cc135bac2d2176 Mon Sep 17 00:00:00 2001 From: chxuan <787280310@qq.com> Date: Sat, 9 Jun 2018 22:28:29 +0800 Subject: [PATCH] add vimcdoc --- .vimrc | 1 + README.md | 2 ++ help.md | 3 +++ 3 files changed, 6 insertions(+) diff --git a/.vimrc b/.vimrc index 23d3ea2..49b9745 100644 --- a/.vimrc +++ b/.vimrc @@ -134,6 +134,7 @@ Plug 'terryma/vim-smooth-scroll' Plug 'terryma/vim-expand-region' Plug 'rhysd/clever-f.vim' Plug 'rhysd/github-complete.vim' +Plug 'yianwillis/vimcdoc' call plug#end() diff --git a/README.md b/README.md index e7da480..8c22c0c 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,7 @@ An automatic configuration program for vim | [vim-expand-region][61] | 快速选择区域 | | [clever-f.vim][68] | 强化f和F键 | | [github-complete.vim][69] | Emoji:dog:补全 | +| [vimcdoc][73] | vim中文文档 | 快捷键 @@ -301,3 +302,4 @@ Q & A [70]: https://github.com/chxuan/vim-buffer [71]: https://raw.githubusercontent.com/chxuan/cppfun/master/screenshots/cppfun.gif [72]: https://github.com/chxuan/vim-replace + [73]: https://github.com/yianwillis/vimcdoc diff --git a/help.md b/help.md index 21c10bf..e6f8651 100644 --- a/help.md +++ b/help.md @@ -124,6 +124,8 @@ | `tx` | 跳转到下一个为x的字符前 | | `Tx` | 跳转到上一个为x的字符前 | | `;` | 跳到下一个搜索的结果 | +| `[[` | 跳转到函数开头 | +| `]]` | 跳转到函数结尾 | 文本编辑 @@ -297,6 +299,7 @@ | `h tips` | 查看Vim内置的常用技巧文档 | | `h quote` | 寄存器 | | `h autocommand-events` | 所有可能事件 | +| `h write-plugin` | 编写插件 | 其他