1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 20:00:05 +08:00

Update documentations for the key bindings mc (#4178)

Co-authored-by: Kun Lin <ssfjhh@gmail.com>
This commit is contained in:
Kun Lin 2021-04-07 10:27:15 +08:00 committed by GitHub
parent 3a3272353d
commit b8364c1a21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1923,12 +1923,13 @@ Denite/Unite 是一个强大的信息筛选浏览器,这类似于 Emacs 中的
| 快捷键 | 功能描述 |
| ------ | -------------------- |
| `m a` | 显示书签列表 |
| `m c` | 清除所有书签 |
| `m m` | 切换当前行标签状态 |
| `m n` | 跳至下一个书签 |
| `m p` | 跳至前一个书签 |
| `m i` | 给当前行标签添加说明 |
正因为占用了以上几个快捷键,以下几个寄存器无法用来记忆当前位置了:`a`, `m`, `n`, `p`, `i`
正因为占用了以上几个快捷键,以下几个寄存器无法用来记忆当前位置了:`a`, `c`, `m`, `n`, `p`, `i`
当然,也可以在启动函数里将 `<Leader> m` 映射为 `m` 键,如此便可使用 `<Leader> m a` 来代替 `m a`
```viml

View File

@ -2010,12 +2010,13 @@ name = "tools"
| Key Bindings | Descriptions |
| ------------ | ------------------------------- |
| `m a` | Show list of all bookmarks |
| `m c` | Clear all bookmarks |
| `m m` | Toggle bookmark in current line |
| `m n` | Jump to next bookmark |
| `m p` | Jump to previous bookmark |
| `m i` | Annotate bookmark |
As SpaceVim use above bookmarks mappings, so you cannot use `a`, `m`, `n`, `p` or `i` registers to mark current position, but other registers should work well.
As SpaceVim use above bookmarks mappings, so you cannot use `a`, `c`, `m`, `n`, `p` or `i` registers to mark current position, but other registers should work well.
If you really need to use these registers, you can map `<Leader> m` to `m` in your bootstrap function,
then you can use `a` registers via `<Leader> m a`.