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

revert(mapping)!: remove SPC b h, duplicate with SPC a s

This commit is contained in:
Eric Wong 2024-03-15 19:59:09 +08:00
parent 4336429e58
commit 96fe87f849
3 changed files with 0 additions and 3 deletions

View File

@ -269,7 +269,6 @@ function! SpaceVim#layers#core#config() abort
call SpaceVim#mapping#space#def('nnoremap', ['b', 'e'], 'call call(' call SpaceVim#mapping#space#def('nnoremap', ['b', 'e'], 'call call('
\ . string(s:_function('s:safe_erase_buffer')) . ', [])', \ . string(s:_function('s:safe_erase_buffer')) . ', [])',
\ 'safe-erase-buffer', 1) \ 'safe-erase-buffer', 1)
call SpaceVim#mapping#space#def('nnoremap', ['b', 'h'], 'Startify', 'open-welcome-screen', 1)
call SpaceVim#mapping#space#def('nnoremap', ['b', 'm'], 'call call(' call SpaceVim#mapping#space#def('nnoremap', ['b', 'm'], 'call call('
\ . string(s:_function('s:open_message_buffer')) . ', [])', \ . string(s:_function('s:open_message_buffer')) . ', [])',
\ 'open-message-buffer', 1) \ 'open-message-buffer', 1)

View File

@ -1380,7 +1380,6 @@ SpaceVim 选项 `window_leader` 的值来设为其它按键:
| `SPC b Ctrl-d` | 删除其它所有缓冲区 | | `SPC b Ctrl-d` | 删除其它所有缓冲区 |
| `SPC b Ctrl-Shift-d` | 删除名称匹配指定正则表达式的缓冲区 | | `SPC b Ctrl-Shift-d` | 删除名称匹配指定正则表达式的缓冲区 |
| `SPC b e` | 清除当前缓冲区内容,需要手动确认 | | `SPC b e` | 清除当前缓冲区内容,需要手动确认 |
| `SPC b h` | 打开欢迎界面, 等同于快捷键 `SPC a s` |
| `SPC b n` | 切换至下一个缓冲区,排除特殊插件的缓冲区 | | `SPC b n` | 切换至下一个缓冲区,排除特殊插件的缓冲区 |
| `SPC b m` | 打开消息缓冲区 | | `SPC b m` | 打开消息缓冲区 |
| `SPC b o` | 关闭所有窗口和已保存的缓冲区 | | `SPC b o` | 关闭所有窗口和已保存的缓冲区 |

View File

@ -1489,7 +1489,6 @@ Buffer manipulation commands (start with `b`):
| `SPC b Ctrl-d` | kill other buffers | | `SPC b Ctrl-d` | kill other buffers |
| `SPC b Ctrl-Shift-d` | kill buffers using a regular expression | | `SPC b Ctrl-Shift-d` | kill buffers using a regular expression |
| `SPC b e` | erase the content of the buffer (ask for confirmation) | | `SPC b e` | erase the content of the buffer (ask for confirmation) |
| `SPC b h` | open _SpaceVim_ home buffer |
| `SPC b n` | switch to next buffer avoiding special buffers | | `SPC b n` | switch to next buffer avoiding special buffers |
| `SPC b m` | open _Messages_ buffer | | `SPC b m` | open _Messages_ buffer |
| `SPC b o` | kill all saved buffers and windows except the current one | | `SPC b o` | kill all saved buffers and windows except the current one |