Hirohito Higashi | 8f7256a | 2025-06-07 18:31:42 +0200 | [diff] [blame] | 1 | *tabpage.txt* For Vim version 9.1. Last change: 2025 Jun 07 |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
| 5 | |
| 6 | |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 7 | Editing with windows in multiple tab pages. *tab-page* *tabpage* |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 8 | |
| 9 | The commands which have been added to use multiple tab pages are explained |
| 10 | here. Additionally, there are explanations for commands that work differently |
| 11 | when used in combination with more than one tab page. |
| 12 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 13 | 1. Introduction |tab-page-intro| |
| 14 | 2. Commands |tab-page-commands| |
| 15 | 3. Other items |tab-page-other| |
| 16 | 4. Setting 'tabline' |setting-tabline| |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 17 | 5. Setting 'tabpanel' |setting-tabpanel| |
| 18 | 6. Setting 'guitablabel' |setting-guitablabel| |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 19 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 20 | {not able to use multiple tab pages when the |+windows| feature was disabled |
| 21 | at compile time} |
| 22 | |
| 23 | ============================================================================== |
| 24 | 1. Introduction *tab-page-intro* |
| 25 | |
| 26 | A tab page holds one or more windows. You can easily switch between tab |
| 27 | pages, so that you have several collections of windows to work on different |
| 28 | things. |
| 29 | |
| 30 | Usually you will see a list of labels at the top of the Vim window, one for |
| 31 | each tab page. With the mouse you can click on the label to jump to that tab |
| 32 | page. There are other ways to move between tab pages, see below. |
| 33 | |
| 34 | Most commands work only in the current tab page. That includes the |CTRL-W| |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 35 | commands, |:windo|, |:all| and |:ball| (when not using the |:tab| modifier). |
| 36 | The commands that are aware of other tab pages than the current one are |
| 37 | mentioned below. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 38 | |
| 39 | Tabs are also a nice way to edit a buffer temporarily without changing the |
| 40 | current window layout. Open a new tab page, do whatever you want to do and |
| 41 | close the tab page. |
| 42 | |
| 43 | ============================================================================== |
| 44 | 2. Commands *tab-page-commands* |
| 45 | |
| 46 | OPENING A NEW TAB PAGE: |
| 47 | |
| 48 | When starting Vim "vim -p filename ..." opens each file argument in a separate |
Bram Moolenaar | 58f0a1f | 2010-07-17 16:30:42 +0200 | [diff] [blame] | 49 | tab page (up to 'tabpagemax'). See |-p| |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 50 | |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 51 | A double click with the mouse in the non-GUI tab pages line opens a new, empty |
| 52 | tab page. It is placed left of the position of the click. The first click |
| 53 | may select another tab page first, causing an extra screen update. |
| 54 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 55 | This also works in a few GUI versions, esp. Win32 and Motif. But only when |
| 56 | clicking right of the labels. |
| 57 | |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 58 | In the GUI tab pages line you can use the right mouse button to open menu. |
| 59 | |tabline-menu|. |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 60 | |
Bram Moolenaar | 46fceaa | 2016-10-23 21:21:08 +0200 | [diff] [blame] | 61 | For the related autocommands see |tabnew-autocmd|. |
| 62 | |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 63 | :[count]tabe[dit] *:tabe* *:tabedit* *:tabnew* |
| 64 | :[count]tabnew |
| 65 | Open a new tab page with an empty window, after the current |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 66 | tab page. If [count] is given the new tab page appears after |
| 67 | the tab page [count] otherwise the new tab page will appear |
| 68 | after the current one. > |
| 69 | :tabnew " opens tabpage after the current one |
| 70 | :.tabnew " as above |
| 71 | :+tabnew " opens tabpage after the next tab page |
| 72 | " note: it is one further than :tabnew |
| 73 | :-tabnew " opens tabpage before the current one |
| 74 | :0tabnew " opens tabpage before the first one |
| 75 | :$tabnew " opens tabpage after the last one |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 76 | |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 77 | :[count]tabe[dit] [++opt] [+cmd] {file} |
| 78 | :[count]tabnew [++opt] [+cmd] {file} |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 79 | Open a new tab page and edit {file}, like with |:edit|. |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 80 | For [count] see |:tabnew| above. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 81 | |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 82 | :[count]tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind* |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 83 | Open a new tab page and edit {file} in 'path', like with |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 84 | |:find|. For [count] see |:tabnew| above. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 85 | |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 86 | :[count]tab {cmd} *:tab* |
| 87 | Execute {cmd} and when it opens a new window open a new tab |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 88 | page instead. Doesn't work for |:diffsplit|, |:diffpatch|, |
| 89 | |:execute| and |:normal|. |
Bram Moolenaar | 9b7f8ce | 2016-08-21 19:07:17 +0200 | [diff] [blame] | 90 | If [count] is given the new tab page appears after the tab |
| 91 | page [count] otherwise the new tab page will appear after the |
| 92 | current one. |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 93 | Examples: > |
Bram Moolenaar | 9b7f8ce | 2016-08-21 19:07:17 +0200 | [diff] [blame] | 94 | :tab split " opens current buffer in new tab page |
| 95 | :tab help gt " opens tab page with help for "gt" |
| 96 | :.tab help gt " as above |
| 97 | :+tab help " opens tab page with help after the next |
| 98 | " tab page |
| 99 | :-tab help " opens tab page with help before the |
| 100 | " current one |
| 101 | :0tab help " opens tab page with help before the |
| 102 | " first one |
| 103 | :$tab help " opens tab page with help after the last |
| 104 | " one |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 105 | |
Bram Moolenaar | 8dff818 | 2006-04-06 20:18:50 +0000 | [diff] [blame] | 106 | CTRL-W gf Open a new tab page and edit the file name under the cursor. |
| 107 | See |CTRL-W_gf|. |
| 108 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 109 | CTRL-W gF Open a new tab page and edit the file name under the cursor |
| 110 | and jump to the line number following the file name. |
| 111 | See |CTRL-W_gF|. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 112 | |
| 113 | CLOSING A TAB PAGE: |
| 114 | |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 115 | Closing the last window of a tab page closes the tab page too, unless there is |
| 116 | only one tab page. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 117 | |
| 118 | Using the mouse: If the tab page line is displayed you can click in the "X" at |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 119 | the top right to close the current tab page. A custom |'tabline'| may show |
| 120 | something else. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 121 | |
| 122 | *:tabc* *:tabclose* |
| 123 | :tabc[lose][!] Close current tab page. |
| 124 | This command fails when: |
| 125 | - There is only one tab page on the screen. *E784* |
| 126 | - When 'hidden' is not set, [!] is not used, a buffer has |
| 127 | changes, and there is no other window on this buffer. |
| 128 | Changes to the buffer are not written and won't get lost, so |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 129 | this is a "safe" command. > |
| 130 | :tabclose " close the current tab page |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 131 | |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 132 | :{count}tabc[lose][!] |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 133 | :tabc[lose][!] {count} |
Bram Moolenaar | 9b45125 | 2012-08-15 17:43:31 +0200 | [diff] [blame] | 134 | Close tab page {count}. Fails in the same way as `:tabclose` |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 135 | above. > |
| 136 | :-tabclose " close the previous tab page |
| 137 | :+tabclose " close the next tab page |
| 138 | :1tabclose " close the first tab page |
| 139 | :$tabclose " close the last tab page |
Bram Moolenaar | 8a3b805 | 2022-06-26 12:21:15 +0100 | [diff] [blame] | 140 | :tabclose -2 " close the 2nd previous tab page |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 141 | :tabclose + " close the next tab page |
| 142 | :tabclose 3 " close the third tab page |
| 143 | :tabclose $ " close the last tab page |
Bram Moolenaar | 94f4ffa | 2020-08-10 19:21:15 +0200 | [diff] [blame] | 144 | :tabclose # " close the last accessed tab page |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 145 | |
LemonBoy | 5247b0b | 2024-07-12 19:30:58 +0200 | [diff] [blame] | 146 | When a tab is closed the next tab page will become the current one. This |
| 147 | behaviour can be customized using the 'tabclose' option. |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 148 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 149 | *:tabo* *:tabonly* |
| 150 | :tabo[nly][!] Close all other tab pages. |
| 151 | When the 'hidden' option is set, all buffers in closed windows |
| 152 | become hidden. |
| 153 | When 'hidden' is not set, and the 'autowrite' option is set, |
| 154 | modified buffers are written. Otherwise, windows that have |
| 155 | buffers that are modified are not removed, unless the [!] is |
| 156 | given, then they become hidden. But modified buffers are |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 157 | never abandoned, so changes cannot get lost. > |
| 158 | :tabonly " close all tab pages except the current |
Bram Moolenaar | 9b7f8ce | 2016-08-21 19:07:17 +0200 | [diff] [blame] | 159 | " one |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 160 | |
| 161 | :{count}tabo[nly][!] |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 162 | :tabo[nly][!] {count} |
| 163 | Close all tab pages except {count} one. > |
Bram Moolenaar | 9b7f8ce | 2016-08-21 19:07:17 +0200 | [diff] [blame] | 164 | :.tabonly " as above |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 165 | :-tabonly " close all tab pages except the previous |
| 166 | " one |
| 167 | :+tabonly " close all tab pages except the next one |
| 168 | :1tabonly " close all tab pages except the first one |
| 169 | :$tabonly " close all tab pages except the last one |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 170 | :tabonly - " close all tab pages except the previous |
| 171 | " one |
| 172 | :tabonly +2 " close all tab pages except the two next |
| 173 | " one |
| 174 | :tabonly 1 " close all tab pages except the first one |
| 175 | :tabonly $ " close all tab pages except the last one |
Bram Moolenaar | 94f4ffa | 2020-08-10 19:21:15 +0200 | [diff] [blame] | 176 | :tabonly # " close all tab pages except the last |
| 177 | " accessed one |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 178 | |
| 179 | |
| 180 | SWITCHING TO ANOTHER TAB PAGE: |
| 181 | |
| 182 | Using the mouse: If the tab page line is displayed you can click in a tab page |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 183 | label to switch to that tab page. Click where there is no label to go to the |
| 184 | next tab page. |'tabline'| |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 185 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 186 | :tabn[ext] *:tabn* *:tabnext* *gt* |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 187 | <C-PageDown> *CTRL-<PageDown>* *<C-PageDown>* |
| 188 | gt *i_CTRL-<PageDown>* *i_<C-PageDown>* |
Bram Moolenaar | 7fc904b | 2006-04-13 20:37:35 +0000 | [diff] [blame] | 189 | Go to the next tab page. Wraps around from the last to the |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 190 | first one. |
| 191 | |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 192 | :{count}tabn[ext] |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 193 | :tabn[ext] {count} |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 194 | Go to tab page {count}. The first tab page has number one. > |
| 195 | :-tabnext " go to the previous tab page |
| 196 | :+tabnext " go to the next tab page |
| 197 | :+2tabnext " go to the two next tab page |
| 198 | :1tabnext " go to the first tab page |
| 199 | :$tabnext " go to the last tab page |
| 200 | :tabnext $ " as above |
zeertzjq | 076faac | 2024-03-25 16:41:06 +0100 | [diff] [blame] | 201 | :tabnext # " go to the last accessed tab page |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 202 | :tabnext - " go to the previous tab page |
| 203 | :tabnext -1 " as above |
| 204 | :tabnext + " go to the next tab page |
| 205 | :tabnext +1 " as above |
| 206 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 207 | {count}<C-PageDown> |
| 208 | {count}gt Go to tab page {count}. The first tab page has number one. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 209 | |
| 210 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 211 | :tabp[revious] *:tabp* *:tabprevious* *gT* *:tabN* |
| 212 | :tabN[ext] *:tabNext* *CTRL-<PageUp>* |
| 213 | <C-PageUp> *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>* |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 214 | gT Go to the previous tab page. Wraps around from the first one |
| 215 | to the last one. |
| 216 | |
| 217 | :tabp[revious] {count} |
| 218 | :tabN[ext] {count} |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 219 | {count}<C-PageUp> |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 220 | {count}gT Go {count} tab pages back. Wraps around from the first one |
Bram Moolenaar | 0b0f099 | 2018-05-22 21:41:30 +0200 | [diff] [blame] | 221 | to the last one. Note that the use of {count} is different |
| 222 | from |:tabnext|, where it is used as the tab page number. |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 223 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 224 | :tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind* |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 225 | :tabfir[st] Go to the first tab page. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 226 | |
| 227 | *:tabl* *:tablast* |
| 228 | :tabl[ast] Go to the last tab page. |
| 229 | |
Christian Brabandt | fed0196 | 2024-05-15 21:04:33 +0200 | [diff] [blame] | 230 | <C-Tab> *g<Tab>* *CTRL-W_g<Tab>* *<C-Tab>* |
| 231 | g<Tab> |
| 232 | CTRL-W g<Tab> Go to the last accessed tab page. |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 233 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 234 | Other commands: |
| 235 | *:tabs* |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 236 | :tabs List the tab pages and the windows they contain. |
| 237 | Shows a ">" for the current window. |
| 238 | Shows a "+" for modified buffers. |
Bram Moolenaar | 7e1479b | 2016-09-11 15:07:27 +0200 | [diff] [blame] | 239 | For example: |
| 240 | Tab page 1 ~ |
| 241 | + tabpage.txt ~ |
| 242 | ex_docmd.c ~ |
| 243 | Tab page 2 ~ |
| 244 | > main.c ~ |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 245 | |
| 246 | |
| 247 | REORDERING TAB PAGES: |
| 248 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 249 | :tabm[ove] [N] *:tabm* *:tabmove* |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 250 | :[N]tabm[ove] |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 251 | Move the current tab page to after tab page N. Use zero to |
Bram Moolenaar | d473c8c | 2018-08-11 18:00:22 +0200 | [diff] [blame] | 252 | make the current tab page the first one. N is counted before |
| 253 | the move, thus if the second tab is the current one, |
zeertzjq | 076faac | 2024-03-25 16:41:06 +0100 | [diff] [blame] | 254 | `:tabmove 1` and `:tabmove 2` have no effect. |
Bram Moolenaar | d473c8c | 2018-08-11 18:00:22 +0200 | [diff] [blame] | 255 | Without N the tab page is made the last one. > |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 256 | :.tabmove " do nothing |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 257 | :-tabmove " move the tab page to the left |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 258 | :+tabmove " move the tab page to the right |
zeertzjq | 076faac | 2024-03-25 16:41:06 +0100 | [diff] [blame] | 259 | :0tabmove " move the tab page to the first |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 260 | :tabmove 0 " as above |
| 261 | :tabmove " move the tab page to the last |
| 262 | :$tabmove " as above |
| 263 | :tabmove $ " as above |
Bram Moolenaar | cb80aa2 | 2020-10-26 21:12:46 +0100 | [diff] [blame] | 264 | :tabmove # " move the tab page after the last accessed |
Bram Moolenaar | 94f4ffa | 2020-08-10 19:21:15 +0200 | [diff] [blame] | 265 | " tab page |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 266 | |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 267 | :tabm[ove] +[N] |
| 268 | :tabm[ove] -[N] |
| 269 | Move the current tab page N places to the right (with +) or to |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 270 | the left (with -). > |
| 271 | :tabmove - " move the tab page to the left |
| 272 | :tabmove -1 " as above |
| 273 | :tabmove + " move the tab page to the right |
| 274 | :tabmove +1 " as above |
| 275 | |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 276 | |
| 277 | Note that although it is possible to move a tab behind the N-th one by using |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 278 | :Ntabmove. And move it by N places by using :+Ntabmove. For clarification what |
| 279 | +N means in this context see |[range]|. |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 280 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 281 | |
| 282 | LOOPING OVER TAB PAGES: |
| 283 | |
| 284 | *:tabd* *:tabdo* |
Bram Moolenaar | a162bc5 | 2015-01-07 16:54:21 +0100 | [diff] [blame] | 285 | :[range]tabd[o] {cmd} |
| 286 | Execute {cmd} in each tab page or if [range] is given only in |
| 287 | tab pages which tab page number is in the [range]. It works |
| 288 | like doing this: > |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 289 | :tabfirst |
| 290 | :{cmd} |
| 291 | :tabnext |
| 292 | :{cmd} |
| 293 | etc. |
| 294 | < This only operates in the current window of each tab page. |
| 295 | When an error is detected on one tab page, further tab pages |
| 296 | will not be visited. |
| 297 | The last tab page (or where an error occurred) becomes the |
| 298 | current tab page. |
| 299 | {cmd} can contain '|' to concatenate several commands. |
| 300 | {cmd} must not open or close tab pages or reorder them. |
Bram Moolenaar | aa23b37 | 2015-09-08 18:46:31 +0200 | [diff] [blame] | 301 | Also see |:windo|, |:argdo|, |:bufdo|, |:cdo|, |:ldo|, |:cfdo| |
| 302 | and |:lfdo| |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 303 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 304 | ============================================================================== |
| 305 | 3. Other items *tab-page-other* |
| 306 | |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 307 | *tabline-menu* |
| 308 | The GUI tab pages line has a popup menu. It is accessed with a right click. |
| 309 | The entries are: |
| 310 | Close Close the tab page under the mouse pointer. The |
| 311 | current one if there is no label under the mouse |
| 312 | pointer. |
| 313 | New Tab Open a tab page, editing an empty buffer. It appears |
| 314 | to the left of the mouse pointer. |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 315 | Open Tab... Like "New Tab" and additionally use a file selector to |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 316 | select a file to edit. |
| 317 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 318 | Diff mode works per tab page. You can see the diffs between several files |
| 319 | within one tab page. Other tab pages can show differences between other |
| 320 | files. |
| 321 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 322 | Variables local to a tab page start with "t:". |tabpage-variable| |
| 323 | |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 324 | Currently there is only one option local to a tab page: 'cmdheight'. |
| 325 | |
Bram Moolenaar | 46fceaa | 2016-10-23 21:21:08 +0200 | [diff] [blame] | 326 | *tabnew-autocmd* |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 327 | The TabLeave and TabEnter autocommand events can be used to do something when |
| 328 | switching from one tab page to another. The exact order depends on what you |
| 329 | are doing. When creating a new tab page this works as if you create a new |
| 330 | window on the same buffer and then edit another buffer. Thus ":tabnew" |
| 331 | triggers: |
| 332 | WinLeave leave current window |
| 333 | TabLeave leave current tab page |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 334 | WinEnter enter window in new tab page |
Bram Moolenaar | a162bc5 | 2015-01-07 16:54:21 +0100 | [diff] [blame] | 335 | TabEnter enter new tab page |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 336 | BufLeave leave current buffer |
| 337 | BufEnter enter new empty buffer |
| 338 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 339 | When switching to another tab page the order is: |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 340 | BufLeave |
| 341 | WinLeave |
| 342 | TabLeave |
| 343 | TabEnter |
| 344 | WinEnter |
| 345 | BufEnter |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 346 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 347 | ============================================================================== |
| 348 | 4. Setting 'tabline' *setting-tabline* |
| 349 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 350 | The 'tabline' option specifies what the line with tab pages labels looks like. |
| 351 | It is only used when there is no GUI tab line. |
| 352 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 353 | You can use the 'showtabline' option to specify when you want the line with |
| 354 | tab page labels to appear: never, when there is more than one tab page or |
| 355 | always. |
| 356 | |
| 357 | The highlighting of the tab pages line is set with the groups TabLine |
| 358 | TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill| |
| 359 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 360 | A "+" will be shown for a tab page that has a modified window. The number of |
| 361 | windows in a tabpage is also shown. Thus "3+" means three windows and one of |
| 362 | them has a modified buffer. |
| 363 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 364 | The 'tabline' option allows you to define your preferred way to tab pages |
| 365 | labels. This isn't easy, thus an example will be given here. |
| 366 | |
| 367 | For basics see the 'statusline' option. The same items can be used in the |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 368 | 'tabline' and 'tabpanel' option. Additionally, the |tabpagebuflist()|, |
| 369 | |tabpagenr()| and |tabpagewinnr()| functions are useful. |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 370 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 371 | Since the number of tab labels will vary, you need to use an expression for |
| 372 | the whole option. Something like: > |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 373 | :set tabline=%!MyTabLine() |
| 374 | |
| 375 | Then define the MyTabLine() function to list all the tab pages labels. A |
| 376 | convenient method is to split it in two parts: First go over all the tab |
| 377 | pages and define labels for them. Then get the label for each tab page. > |
| 378 | |
| 379 | function MyTabLine() |
| 380 | let s = '' |
| 381 | for i in range(tabpagenr('$')) |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 382 | " select the highlighting |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 383 | if i + 1 == tabpagenr() |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 384 | let s ..= '%#TabLineSel#' |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 385 | else |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 386 | let s ..= '%#TabLine#' |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 387 | endif |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 388 | |
| 389 | " set the tab page number (for mouse clicks) |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 390 | let s ..= '%' .. (i + 1) .. 'T' |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 391 | |
| 392 | " the label is made by MyTabLabel() |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 393 | let s ..= ' %{MyTabLabel(' .. (i + 1) .. ')} ' |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 394 | endfor |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 395 | |
| 396 | " after the last tab fill with TabLineFill and reset tab page nr |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 397 | let s ..= '%#TabLineFill#%T' |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 398 | |
| 399 | " right-align the label to close the current tab page |
| 400 | if tabpagenr('$') > 1 |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 401 | let s ..= '%=%#TabLine#%999Xclose' |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 402 | endif |
| 403 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 404 | return s |
| 405 | endfunction |
| 406 | |
| 407 | Now the MyTabLabel() function is called for each tab page to get its label. > |
| 408 | |
| 409 | function MyTabLabel(n) |
| 410 | let buflist = tabpagebuflist(a:n) |
| 411 | let winnr = tabpagewinnr(a:n) |
| 412 | return bufname(buflist[winnr - 1]) |
| 413 | endfunction |
| 414 | |
| 415 | This is just a simplistic example that results in a tab pages line that |
| 416 | resembles the default, but without adding a + for a modified buffer or |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 417 | truncating the names. You will want to reduce the width of labels in a |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 418 | clever way when there is not enough room. Check the 'columns' option for the |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 419 | space available. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 420 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 421 | ============================================================================== |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 422 | 5. Setting 'tabpanel' *tabpanel* *setting-tabpanel* |
| 423 | |
| 424 | The tabpanel is a vertical sidebar that displays tab page labels along the |
| 425 | side of the window. It looks like this: |
| 426 | > |
| 427 | +-----------+---------------------------------- |
| 428 | |(1) |text text text text text text text |
| 429 | | ~/aaa.txt|text text text text text text text |
| 430 | |(2) |text text text text text text text |
| 431 | | ~/.vimrc |text text text text text text text |
| 432 | |(3) |text text text text text text text |
| 433 | | ~/bbb.js |text text text text text text text |
| 434 | | ~/ccc.css|text text text text text text text |
| 435 | | |text text text text text text text |
| 436 | | |text text text text text text text |
| 437 | | |text text text text text text text |
| 438 | < |
Christ van Willegen | d65cdad | 2025-05-30 16:05:58 +0200 | [diff] [blame] | 439 | To configure the tabpanel, use the following options: 'tabpanel', |
| 440 | 'showtabpanel' and 'tabpanelopt'. |
| 441 | The 'tabpanel' and 'showtabpanel' options function similar to |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 442 | 'statusline' or 'tabline'. |
| 443 | |
Hirohito Higashi | 8f7256a | 2025-06-07 18:31:42 +0200 | [diff] [blame] | 444 | The "columns:" item of 'tabpanelopt' option specifies the width of the |
| 445 | tabpanel: |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 446 | > |
| 447 | +------ This width |
| 448 | | |
| 449 | <----+-----> |
| 450 | +-----------+---------------------------------- |
| 451 | |(1) |text text text text text text text |
| 452 | | ~/aaa.txt|text text text text text text text |
| 453 | |(2) |text text text text text text text |
| 454 | < |
Hirohito Higashi | 8f7256a | 2025-06-07 18:31:42 +0200 | [diff] [blame] | 455 | The "align:" item of the 'tabpanelopt' option determines whether the tabpanel |
| 456 | will be displayed on the left or right side of the window: |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 457 | > |
| 458 | +----------------------------------+----------- |
| 459 | |text text text text text text text|(1) |
| 460 | |text text text text text text text| ~/aaa.txt |
| 461 | |text text text text text text text|(2) |
| 462 | < |
Hirohito Higashi | 8f7256a | 2025-06-07 18:31:42 +0200 | [diff] [blame] | 463 | The "vert" item of the 'tabpanelopt' option specifies whether a vertical |
| 464 | separator should be displayed between the tabpanel and the display part of the |
| 465 | window: |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 466 | > |
| 467 | +------ This is |
| 468 | | |
| 469 | v |
| 470 | +-----------+---------------------------------- |
| 471 | |(1) |text text text text text text text |
| 472 | | ~/aaa.txt|text text text text text text text |
| 473 | |(2) |text text text text text text text |
| 474 | < |
Hirohito Higashi | 8f7256a | 2025-06-07 18:31:42 +0200 | [diff] [blame] | 475 | The vertical separator character is taken from "tpl_vert" in 'fillchars'. |
Naruhiko Nishino | be5bd4d | 2025-05-14 21:20:28 +0200 | [diff] [blame] | 476 | |
| 477 | You can customize the appearance of the tab page labels using the highlight |
| 478 | groups: |hl-TabPanel| |hl-TabPanelSel| |hl-TabPanelFill| |
| 479 | |
| 480 | ============================================================================== |
| 481 | 6. Setting 'guitablabel' *setting-guitablabel* |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 482 | |
| 483 | When the GUI tab pages line is displayed, 'guitablabel' can be used to |
| 484 | specify the label to display for each tab page. Unlike 'tabline', which |
| 485 | specifies the whole tab pages line at once, 'guitablabel' is used for each |
| 486 | label separately. |
| 487 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 488 | 'guitabtooltip' is very similar and is used for the tooltip of the same label. |
| 489 | This only appears when the mouse pointer hovers over the label, thus it |
| 490 | usually is longer. Only supported on some systems though. |
| 491 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 492 | See the 'statusline' option for the format of the value. |
| 493 | |
| 494 | The "%N" item can be used for the current tab page number. The |v:lnum| |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 495 | variable is also set to this number when the option is evaluated. |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 496 | The items that use a file name refer to the current window of the tab page. |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 497 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 498 | Note that syntax highlighting is not used for the option. The %T and %X |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 499 | items are also ignored. |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 500 | |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 501 | A simple example that puts the tab page number and the buffer name in the |
| 502 | label: > |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 503 | :set guitablabel=%N\ %f |
| 504 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 505 | An example that resembles the default 'guitablabel': Show the number of |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 506 | windows in the tab page and a '+' if there is a modified buffer: > |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 507 | |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 508 | function GuiTabLabel() |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 509 | let label = '' |
| 510 | let bufnrlist = tabpagebuflist(v:lnum) |
| 511 | |
| 512 | " Add '+' if one of the buffers in the tab page is modified |
| 513 | for bufnr in bufnrlist |
| 514 | if getbufvar(bufnr, "&modified") |
| 515 | let label = '+' |
| 516 | break |
| 517 | endif |
| 518 | endfor |
| 519 | |
| 520 | " Append the number of windows in the tab page if more than one |
| 521 | let wincount = tabpagewinnr(v:lnum, '$') |
| 522 | if wincount > 1 |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 523 | let label ..= wincount |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 524 | endif |
| 525 | if label != '' |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 526 | let label ..= ' ' |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 527 | endif |
| 528 | |
| 529 | " Append the buffer name |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 530 | return label .. bufname(bufnrlist[tabpagewinnr(v:lnum) - 1]) |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 531 | endfunction |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 532 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 533 | set guitablabel=%{GuiTabLabel()} |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 534 | |
| 535 | Note that the function must be defined before setting the option, otherwise |
| 536 | you get an error message for the function not being known. |
| 537 | |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 538 | If you want to fall back to the default label, return an empty string. |
| 539 | |
| 540 | If you want to show something specific for a tab page, you might want to use a |
| 541 | tab page local variable. |t:var| |
| 542 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 543 | |
Bram Moolenaar | 91f84f6 | 2018-07-29 15:07:52 +0200 | [diff] [blame] | 544 | vim:tw=78:ts=8:noet:ft=help:norl: |