blob: 4b0b591b4b1c1a5dcc211e7e13d22aca09793f22 [file] [log] [blame]
Hirohito Higashi651edf32025-07-01 22:07:50 +02001*tabpage.txt* For Vim version 9.1. Last change: 2025 Jul 01
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007Editing with windows in multiple tab pages. *tab-page* *tabpage*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00008
9The commands which have been added to use multiple tab pages are explained
10here. Additionally, there are explanations for commands that work differently
11when used in combination with more than one tab page.
12
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000131. Introduction |tab-page-intro|
142. Commands |tab-page-commands|
153. Other items |tab-page-other|
164. Setting 'tabline' |setting-tabline|
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200175. Setting 'tabpanel' |setting-tabpanel|
186. Setting 'guitablabel' |setting-guitablabel|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000019
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000020{not able to use multiple tab pages when the |+windows| feature was disabled
21at compile time}
Hirohito Higashi651edf32025-07-01 22:07:50 +020022{not able to use |tabpanel| feature when the |+tabpanel| feature was disabled
23at compile time}
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000024
25==============================================================================
261. Introduction *tab-page-intro*
27
28A tab page holds one or more windows. You can easily switch between tab
29pages, so that you have several collections of windows to work on different
30things.
31
32Usually you will see a list of labels at the top of the Vim window, one for
33each tab page. With the mouse you can click on the label to jump to that tab
34page. There are other ways to move between tab pages, see below.
35
36Most commands work only in the current tab page. That includes the |CTRL-W|
Bram Moolenaare1438bb2006-03-01 22:01:55 +000037commands, |:windo|, |:all| and |:ball| (when not using the |:tab| modifier).
38The commands that are aware of other tab pages than the current one are
39mentioned below.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000040
41Tabs are also a nice way to edit a buffer temporarily without changing the
42current window layout. Open a new tab page, do whatever you want to do and
43close the tab page.
44
45==============================================================================
462. Commands *tab-page-commands*
47
48OPENING A NEW TAB PAGE:
49
50When starting Vim "vim -p filename ..." opens each file argument in a separate
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +020051tab page (up to 'tabpagemax'). See |-p|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000052
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000053A double click with the mouse in the non-GUI tab pages line opens a new, empty
54tab page. It is placed left of the position of the click. The first click
55may select another tab page first, causing an extra screen update.
56
Bram Moolenaarf193fff2006-04-27 00:02:13 +000057This also works in a few GUI versions, esp. Win32 and Motif. But only when
58clicking right of the labels.
59
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000060In the GUI tab pages line you can use the right mouse button to open menu.
61|tabline-menu|.
Bram Moolenaar80a94a52006-02-23 21:26:58 +000062
Bram Moolenaar46fceaa2016-10-23 21:21:08 +020063For the related autocommands see |tabnew-autocmd|.
64
Bram Moolenaara26559b2010-07-31 14:59:19 +020065:[count]tabe[dit] *:tabe* *:tabedit* *:tabnew*
66:[count]tabnew
67 Open a new tab page with an empty window, after the current
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010068 tab page. If [count] is given the new tab page appears after
69 the tab page [count] otherwise the new tab page will appear
70 after the current one. >
71 :tabnew " opens tabpage after the current one
72 :.tabnew " as above
73 :+tabnew " opens tabpage after the next tab page
74 " note: it is one further than :tabnew
75 :-tabnew " opens tabpage before the current one
76 :0tabnew " opens tabpage before the first one
77 :$tabnew " opens tabpage after the last one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000078
Bram Moolenaara26559b2010-07-31 14:59:19 +020079:[count]tabe[dit] [++opt] [+cmd] {file}
80:[count]tabnew [++opt] [+cmd] {file}
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000081 Open a new tab page and edit {file}, like with |:edit|.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010082 For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000083
Bram Moolenaara26559b2010-07-31 14:59:19 +020084:[count]tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000085 Open a new tab page and edit {file} in 'path', like with
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010086 |:find|. For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000087
Bram Moolenaar80a94a52006-02-23 21:26:58 +000088:[count]tab {cmd} *:tab*
89 Execute {cmd} and when it opens a new window open a new tab
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +000090 page instead. Doesn't work for |:diffsplit|, |:diffpatch|,
91 |:execute| and |:normal|.
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +020092 If [count] is given the new tab page appears after the tab
93 page [count] otherwise the new tab page will appear after the
94 current one.
Bram Moolenaara26559b2010-07-31 14:59:19 +020095 Examples: >
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +020096 :tab split " opens current buffer in new tab page
97 :tab help gt " opens tab page with help for "gt"
98 :.tab help gt " as above
99 :+tab help " opens tab page with help after the next
100 " tab page
101 :-tab help " opens tab page with help before the
102 " current one
103 :0tab help " opens tab page with help before the
104 " first one
105 :$tab help " opens tab page with help after the last
106 " one
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000107
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000108CTRL-W gf Open a new tab page and edit the file name under the cursor.
109 See |CTRL-W_gf|.
110
Bram Moolenaar57657d82006-04-21 22:12:41 +0000111CTRL-W gF Open a new tab page and edit the file name under the cursor
112 and jump to the line number following the file name.
113 See |CTRL-W_gF|.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000114
115CLOSING A TAB PAGE:
116
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000117Closing the last window of a tab page closes the tab page too, unless there is
118only one tab page.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000119
120Using the mouse: If the tab page line is displayed you can click in the "X" at
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000121the top right to close the current tab page. A custom |'tabline'| may show
122something else.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000123
124 *:tabc* *:tabclose*
125:tabc[lose][!] Close current tab page.
126 This command fails when:
127 - There is only one tab page on the screen. *E784*
128 - When 'hidden' is not set, [!] is not used, a buffer has
129 changes, and there is no other window on this buffer.
130 Changes to the buffer are not written and won't get lost, so
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100131 this is a "safe" command. >
132 :tabclose " close the current tab page
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000133
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100134:{count}tabc[lose][!]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000135:tabc[lose][!] {count}
Bram Moolenaar9b451252012-08-15 17:43:31 +0200136 Close tab page {count}. Fails in the same way as `:tabclose`
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100137 above. >
138 :-tabclose " close the previous tab page
139 :+tabclose " close the next tab page
140 :1tabclose " close the first tab page
141 :$tabclose " close the last tab page
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100142 :tabclose -2 " close the 2nd previous tab page
Bram Moolenaar3df01732017-02-17 22:47:16 +0100143 :tabclose + " close the next tab page
144 :tabclose 3 " close the third tab page
145 :tabclose $ " close the last tab page
Bram Moolenaar94f4ffa2020-08-10 19:21:15 +0200146 :tabclose # " close the last accessed tab page
Bram Moolenaara2baa732022-02-04 16:09:54 +0000147
LemonBoy5247b0b2024-07-12 19:30:58 +0200148When a tab is closed the next tab page will become the current one. This
149behaviour can be customized using the 'tabclose' option.
Bram Moolenaara2baa732022-02-04 16:09:54 +0000150
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000151 *:tabo* *:tabonly*
152:tabo[nly][!] Close all other tab pages.
153 When the 'hidden' option is set, all buffers in closed windows
154 become hidden.
155 When 'hidden' is not set, and the 'autowrite' option is set,
156 modified buffers are written. Otherwise, windows that have
157 buffers that are modified are not removed, unless the [!] is
158 given, then they become hidden. But modified buffers are
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100159 never abandoned, so changes cannot get lost. >
160 :tabonly " close all tab pages except the current
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200161 " one
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100162
163:{count}tabo[nly][!]
Bram Moolenaar3df01732017-02-17 22:47:16 +0100164:tabo[nly][!] {count}
165 Close all tab pages except {count} one. >
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200166 :.tabonly " as above
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100167 :-tabonly " close all tab pages except the previous
168 " one
169 :+tabonly " close all tab pages except the next one
170 :1tabonly " close all tab pages except the first one
171 :$tabonly " close all tab pages except the last one
Bram Moolenaar3df01732017-02-17 22:47:16 +0100172 :tabonly - " close all tab pages except the previous
173 " one
174 :tabonly +2 " close all tab pages except the two next
175 " one
176 :tabonly 1 " close all tab pages except the first one
177 :tabonly $ " close all tab pages except the last one
Bram Moolenaar94f4ffa2020-08-10 19:21:15 +0200178 :tabonly # " close all tab pages except the last
179 " accessed one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000180
181
182SWITCHING TO ANOTHER TAB PAGE:
183
184Using the mouse: If the tab page line is displayed you can click in a tab page
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000185label to switch to that tab page. Click where there is no label to go to the
186next tab page. |'tabline'|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000187
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000188:tabn[ext] *:tabn* *:tabnext* *gt*
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000189<C-PageDown> *CTRL-<PageDown>* *<C-PageDown>*
190gt *i_CTRL-<PageDown>* *i_<C-PageDown>*
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000191 Go to the next tab page. Wraps around from the last to the
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000192 first one.
193
Bram Moolenaar3df01732017-02-17 22:47:16 +0100194:{count}tabn[ext]
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000195:tabn[ext] {count}
Bram Moolenaar3df01732017-02-17 22:47:16 +0100196 Go to tab page {count}. The first tab page has number one. >
197 :-tabnext " go to the previous tab page
198 :+tabnext " go to the next tab page
199 :+2tabnext " go to the two next tab page
200 :1tabnext " go to the first tab page
201 :$tabnext " go to the last tab page
202 :tabnext $ " as above
zeertzjq076faac2024-03-25 16:41:06 +0100203 :tabnext # " go to the last accessed tab page
Bram Moolenaar3df01732017-02-17 22:47:16 +0100204 :tabnext - " go to the previous tab page
205 :tabnext -1 " as above
206 :tabnext + " go to the next tab page
207 :tabnext +1 " as above
208
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000209{count}<C-PageDown>
210{count}gt Go to tab page {count}. The first tab page has number one.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000211
212
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000213:tabp[revious] *:tabp* *:tabprevious* *gT* *:tabN*
214:tabN[ext] *:tabNext* *CTRL-<PageUp>*
215<C-PageUp> *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000216gT Go to the previous tab page. Wraps around from the first one
217 to the last one.
218
219:tabp[revious] {count}
220:tabN[ext] {count}
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000221{count}<C-PageUp>
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000222{count}gT Go {count} tab pages back. Wraps around from the first one
Bram Moolenaar0b0f0992018-05-22 21:41:30 +0200223 to the last one. Note that the use of {count} is different
224 from |:tabnext|, where it is used as the tab page number.
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000225
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000226:tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind*
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000227:tabfir[st] Go to the first tab page.
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000228
229 *:tabl* *:tablast*
230:tabl[ast] Go to the last tab page.
231
Christian Brabandtfed01962024-05-15 21:04:33 +0200232<C-Tab> *g<Tab>* *CTRL-W_g<Tab>* *<C-Tab>*
233g<Tab>
234CTRL-W g<Tab> Go to the last accessed tab page.
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000235
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000236Other commands:
237 *:tabs*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000238:tabs List the tab pages and the windows they contain.
239 Shows a ">" for the current window.
240 Shows a "+" for modified buffers.
Bram Moolenaar7e1479b2016-09-11 15:07:27 +0200241 For example:
242 Tab page 1 ~
243 + tabpage.txt ~
244 ex_docmd.c ~
245 Tab page 2 ~
246 > main.c ~
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000247
248
249REORDERING TAB PAGES:
250
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000251:tabm[ove] [N] *:tabm* *:tabmove*
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200252:[N]tabm[ove]
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000253 Move the current tab page to after tab page N. Use zero to
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200254 make the current tab page the first one. N is counted before
255 the move, thus if the second tab is the current one,
zeertzjq076faac2024-03-25 16:41:06 +0100256 `:tabmove 1` and `:tabmove 2` have no effect.
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200257 Without N the tab page is made the last one. >
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200258 :.tabmove " do nothing
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100259 :-tabmove " move the tab page to the left
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200260 :+tabmove " move the tab page to the right
zeertzjq076faac2024-03-25 16:41:06 +0100261 :0tabmove " move the tab page to the first
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200262 :tabmove 0 " as above
263 :tabmove " move the tab page to the last
264 :$tabmove " as above
265 :tabmove $ " as above
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100266 :tabmove # " move the tab page after the last accessed
Bram Moolenaar94f4ffa2020-08-10 19:21:15 +0200267 " tab page
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000268
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200269:tabm[ove] +[N]
270:tabm[ove] -[N]
271 Move the current tab page N places to the right (with +) or to
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200272 the left (with -). >
273 :tabmove - " move the tab page to the left
274 :tabmove -1 " as above
275 :tabmove + " move the tab page to the right
276 :tabmove +1 " as above
277
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200278
279Note that although it is possible to move a tab behind the N-th one by using
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200280:Ntabmove. And move it by N places by using :+Ntabmove. For clarification what
281+N means in this context see |[range]|.
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200282
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000283
284LOOPING OVER TAB PAGES:
285
286 *:tabd* *:tabdo*
Bram Moolenaara162bc52015-01-07 16:54:21 +0100287:[range]tabd[o] {cmd}
288 Execute {cmd} in each tab page or if [range] is given only in
289 tab pages which tab page number is in the [range]. It works
290 like doing this: >
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000291 :tabfirst
292 :{cmd}
293 :tabnext
294 :{cmd}
295 etc.
296< This only operates in the current window of each tab page.
297 When an error is detected on one tab page, further tab pages
298 will not be visited.
299 The last tab page (or where an error occurred) becomes the
300 current tab page.
301 {cmd} can contain '|' to concatenate several commands.
302 {cmd} must not open or close tab pages or reorder them.
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200303 Also see |:windo|, |:argdo|, |:bufdo|, |:cdo|, |:ldo|, |:cfdo|
304 and |:lfdo|
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000305
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000306==============================================================================
3073. Other items *tab-page-other*
308
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000309 *tabline-menu*
310The GUI tab pages line has a popup menu. It is accessed with a right click.
311The entries are:
312 Close Close the tab page under the mouse pointer. The
313 current one if there is no label under the mouse
314 pointer.
315 New Tab Open a tab page, editing an empty buffer. It appears
316 to the left of the mouse pointer.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000317 Open Tab... Like "New Tab" and additionally use a file selector to
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000318 select a file to edit.
319
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000320Diff mode works per tab page. You can see the diffs between several files
321within one tab page. Other tab pages can show differences between other
322files.
323
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000324Variables local to a tab page start with "t:". |tabpage-variable|
325
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000326Currently there is only one option local to a tab page: 'cmdheight'.
327
Bram Moolenaar46fceaa2016-10-23 21:21:08 +0200328 *tabnew-autocmd*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000329The TabLeave and TabEnter autocommand events can be used to do something when
330switching from one tab page to another. The exact order depends on what you
331are doing. When creating a new tab page this works as if you create a new
332window on the same buffer and then edit another buffer. Thus ":tabnew"
333triggers:
334 WinLeave leave current window
335 TabLeave leave current tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000336 WinEnter enter window in new tab page
Bram Moolenaara162bc52015-01-07 16:54:21 +0100337 TabEnter enter new tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000338 BufLeave leave current buffer
339 BufEnter enter new empty buffer
340
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000341When switching to another tab page the order is:
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000342 BufLeave
343 WinLeave
344 TabLeave
345 TabEnter
346 WinEnter
347 BufEnter
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000348
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000349==============================================================================
3504. Setting 'tabline' *setting-tabline*
351
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000352The 'tabline' option specifies what the line with tab pages labels looks like.
353It is only used when there is no GUI tab line.
354
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000355You can use the 'showtabline' option to specify when you want the line with
356tab page labels to appear: never, when there is more than one tab page or
357always.
358
359The highlighting of the tab pages line is set with the groups TabLine
360TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill|
361
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000362A "+" will be shown for a tab page that has a modified window. The number of
363windows in a tabpage is also shown. Thus "3+" means three windows and one of
364them has a modified buffer.
365
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000366The 'tabline' option allows you to define your preferred way to tab pages
367labels. This isn't easy, thus an example will be given here.
368
369For basics see the 'statusline' option. The same items can be used in the
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200370'tabline' and 'tabpanel' option. Additionally, the |tabpagebuflist()|,
371|tabpagenr()| and |tabpagewinnr()| functions are useful.
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000372
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000373Since the number of tab labels will vary, you need to use an expression for
374the whole option. Something like: >
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000375 :set tabline=%!MyTabLine()
376
377Then define the MyTabLine() function to list all the tab pages labels. A
378convenient method is to split it in two parts: First go over all the tab
379pages and define labels for them. Then get the label for each tab page. >
380
381 function MyTabLine()
382 let s = ''
383 for i in range(tabpagenr('$'))
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000384 " select the highlighting
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000385 if i + 1 == tabpagenr()
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000386 let s ..= '%#TabLineSel#'
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000387 else
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000388 let s ..= '%#TabLine#'
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000389 endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000390
391 " set the tab page number (for mouse clicks)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000392 let s ..= '%' .. (i + 1) .. 'T'
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000393
394 " the label is made by MyTabLabel()
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000395 let s ..= ' %{MyTabLabel(' .. (i + 1) .. ')} '
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000396 endfor
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000397
398 " after the last tab fill with TabLineFill and reset tab page nr
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000399 let s ..= '%#TabLineFill#%T'
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000400
401 " right-align the label to close the current tab page
402 if tabpagenr('$') > 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000403 let s ..= '%=%#TabLine#%999Xclose'
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000404 endif
405
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000406 return s
407 endfunction
408
409Now the MyTabLabel() function is called for each tab page to get its label. >
410
411 function MyTabLabel(n)
412 let buflist = tabpagebuflist(a:n)
413 let winnr = tabpagewinnr(a:n)
414 return bufname(buflist[winnr - 1])
415 endfunction
416
417This is just a simplistic example that results in a tab pages line that
418resembles the default, but without adding a + for a modified buffer or
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000419truncating the names. You will want to reduce the width of labels in a
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000420clever way when there is not enough room. Check the 'columns' option for the
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000421space available.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000422
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000423==============================================================================
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +02004245. Setting 'tabpanel' *tabpanel* *setting-tabpanel*
425
426The tabpanel is a vertical sidebar that displays tab page labels along the
427side of the window. It looks like this:
428>
429 +-----------+----------------------------------
430 |(1) |text text text text text text text
431 | ~/aaa.txt|text text text text text text text
432 |(2) |text text text text text text text
433 | ~/.vimrc |text text text text text text text
434 |(3) |text text text text text text text
435 | ~/bbb.js |text text text text text text text
436 | ~/ccc.css|text text text text text text text
437 | |text text text text text text text
438 | |text text text text text text text
439 | |text text text text text text text
440<
Christ van Willegend65cdad2025-05-30 16:05:58 +0200441To configure the tabpanel, use the following options: 'tabpanel',
442'showtabpanel' and 'tabpanelopt'.
Hirohito Higashi651edf32025-07-01 22:07:50 +0200443The 'tabpanel' option functions similar to 'statusline' or 'tabline', and the
444'showtabpanel' option functions similar to 'laststatus' or 'showtabline'.
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200445
Hirohito Higashi8f7256a2025-06-07 18:31:42 +0200446The "columns:" item of 'tabpanelopt' option specifies the width of the
447tabpanel:
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200448>
Hirohito Higashi651edf32025-07-01 22:07:50 +0200449 +------ This width
450 |
451 <----+----->
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200452 +-----------+----------------------------------
453 |(1) |text text text text text text text
454 | ~/aaa.txt|text text text text text text text
455 |(2) |text text text text text text text
456<
Hirohito Higashi8f7256a2025-06-07 18:31:42 +0200457The "align:" item of the 'tabpanelopt' option determines whether the tabpanel
458will be displayed on the left or right side of the window:
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200459>
460 +----------------------------------+-----------
461 |text text text text text text text|(1)
462 |text text text text text text text| ~/aaa.txt
463 |text text text text text text text|(2)
464<
Hirohito Higashi8f7256a2025-06-07 18:31:42 +0200465The "vert" item of the 'tabpanelopt' option specifies whether a vertical
466separator should be displayed between the tabpanel and the display part of the
467window:
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200468>
Hirohito Higashi651edf32025-07-01 22:07:50 +0200469 +------ This is
470 |
471 v
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200472 +-----------+----------------------------------
473 |(1) |text text text text text text text
474 | ~/aaa.txt|text text text text text text text
475 |(2) |text text text text text text text
476<
Hirohito Higashi8f7256a2025-06-07 18:31:42 +0200477The vertical separator character is taken from "tpl_vert" in 'fillchars'.
Naruhiko Nishinobe5bd4d2025-05-14 21:20:28 +0200478
479You can customize the appearance of the tab page labels using the highlight
480groups: |hl-TabPanel| |hl-TabPanelSel| |hl-TabPanelFill|
481
482==============================================================================
4836. Setting 'guitablabel' *setting-guitablabel*
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000484
485When the GUI tab pages line is displayed, 'guitablabel' can be used to
486specify the label to display for each tab page. Unlike 'tabline', which
487specifies the whole tab pages line at once, 'guitablabel' is used for each
488label separately.
489
Bram Moolenaar57657d82006-04-21 22:12:41 +0000490'guitabtooltip' is very similar and is used for the tooltip of the same label.
491This only appears when the mouse pointer hovers over the label, thus it
492usually is longer. Only supported on some systems though.
493
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000494See the 'statusline' option for the format of the value.
495
496The "%N" item can be used for the current tab page number. The |v:lnum|
Bram Moolenaar57657d82006-04-21 22:12:41 +0000497variable is also set to this number when the option is evaluated.
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000498The items that use a file name refer to the current window of the tab page.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000499
Bram Moolenaar57657d82006-04-21 22:12:41 +0000500Note that syntax highlighting is not used for the option. The %T and %X
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000501items are also ignored.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000502
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000503A simple example that puts the tab page number and the buffer name in the
504label: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000505 :set guitablabel=%N\ %f
506
Bram Moolenaar57657d82006-04-21 22:12:41 +0000507An example that resembles the default 'guitablabel': Show the number of
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000508windows in the tab page and a '+' if there is a modified buffer: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000509
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000510 function GuiTabLabel()
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000511 let label = ''
512 let bufnrlist = tabpagebuflist(v:lnum)
513
514 " Add '+' if one of the buffers in the tab page is modified
515 for bufnr in bufnrlist
516 if getbufvar(bufnr, "&modified")
517 let label = '+'
518 break
519 endif
520 endfor
521
522 " Append the number of windows in the tab page if more than one
523 let wincount = tabpagewinnr(v:lnum, '$')
524 if wincount > 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000525 let label ..= wincount
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000526 endif
527 if label != ''
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000528 let label ..= ' '
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000529 endif
530
531 " Append the buffer name
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000532 return label .. bufname(bufnrlist[tabpagewinnr(v:lnum) - 1])
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000533 endfunction
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000534
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000535 set guitablabel=%{GuiTabLabel()}
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000536
537Note that the function must be defined before setting the option, otherwise
538you get an error message for the function not being known.
539
Bram Moolenaard68071d2006-05-02 22:08:30 +0000540If you want to fall back to the default label, return an empty string.
541
542If you want to show something specific for a tab page, you might want to use a
543tab page local variable. |t:var|
544
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000545
Bram Moolenaar91f84f62018-07-29 15:07:52 +0200546 vim:tw=78:ts=8:noet:ft=help:norl: