forked from chxuan/vimplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
| 快捷键 | 说明 | | ||
| ------- | ----- | | ||
| `,` | Leader Key | | ||
| `<Leader>n` | 打开/关闭目录树 | | ||
| `<Leader>t` | 显示函数、变量、宏列表 | | ||
| `<Leader>a` | .h .cpp 文件切换 | | ||
| `<Leader>u` | 转到函数实现 | | ||
| `<Leader>i` | 转到函数声明 | | ||
| `<Leader>o` | 打开include文件 | | ||
| `<Leader>w` | 单词跳转 | | ||
| `<Leader>f` | 模糊文件搜索 | | ||
| `<Leader>ev` | 快速编辑vimrc文件 | | ||
| `<F5>` | 分析语法错误 | | ||
| `<F9>/<F10>` | 改变主题颜色 | | ||
| `<F7>/<F8>` | 启用/关闭markdown实时预览 | | ||
| `<Ctrl> p/<Ctrl> n` | 窗口切换 | | ||
| `<Ctrl> o/<Ctrl> i` | 光标位置切换 | | ||
| `gcc` | 注释代码 | | ||
| `:DirDiff <dir1> <dir2>` | 目录比较 | | ||
| `.` | 重复上次操作 | | ||
| `vi"/di"/ci"` | 选中/删除/改写引号(可以是括号等配对符)内的内容 | | ||
| `di,/ci,` | 删除/改写函数参数 | | ||
| `vif/dif/cif` | 选中/删除/改写函数内容 | |