1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 15:19:12 +08:00

docs(tabmanager): add :h SpaceVim-plugins-tabmanager

This commit is contained in:
wsdjeg 2022-04-14 19:26:47 +08:00
parent 109a5b2490
commit de88eb3fd8
2 changed files with 59 additions and 1 deletions

View File

@ -7,6 +7,35 @@
"=============================================================================
scriptencoding utf-8
""
" @section tab manager, plugins-tabmanager
" @parentsection plugins
" The `tabmanager` plugin provides tab manager support for SpaceVim.
"
" @subsection Key bindings
" >
" Key binding Description
" SPC t t open tab manager windows
" <
"
" In the tab manager windows, the following key bindings can be used:
" >
" Key binding Description
" ---------------------------
" q close tab manager
" o toggle tab
" r rename tabpage
" n create new named tabpage
" N create new unamed tabpage
" x delete tabpage
" yy copy tabpage
" p paste tabpage
" Ctrl-Shift-Up move tabpage backward
" Ctrl-Shift-Down move tabpage forward
" <
" APIs
let s:BUFFER = SpaceVim#api#import('vim#buffer')
let s:TABs = SpaceVim#api#import('vim#tab')

View File

@ -236,7 +236,8 @@ CONTENTS *SpaceVim-contents*
8. Plugins................................................|SpaceVim-plugins|
1. iedit........................................|SpaceVim-plugins-iedit|
2. runner......................................|SpaceVim-plugins-runner|
3. todo manager...........................|SpaceVim-plugins-todomanager|
3. tab manager.............................|SpaceVim-plugins-tabmanager|
4. todo manager...........................|SpaceVim-plugins-todomanager|
9. API........................................................|SpaceVim-api|
1. clock............................................|SpaceVim-api-clock|
2. cmdlinemenu................................|SpaceVim-api-cmdlinemenu|
@ -5657,6 +5658,34 @@ KEY BINDINGS
i insert text to background process
<
==============================================================================
TAB MANAGER *SpaceVim-plugins-tabmanager*
The `tabmanager` plugin provides tab manager support for SpaceVim.
KEY BINDINGS
>
Key binding Description
SPC t t open tab manager windows
<
In the tab manager windows, the following key bindings can be used:
>
Key binding Description
---------------------------
q close tab manager
o toggle tab
r rename tabpage
n create new named tabpage
N create new unamed tabpage
x delete tabpage
yy copy tabpage
p paste tabpage
Ctrl-Shift-Up move tabpage backward
Ctrl-Shift-Down move tabpage forward
<
==============================================================================
TODO MANAGER *SpaceVim-plugins-todomanager*