blob: afc2512509e9392ee8fea729e4caccd9b839bac9 [file] [log] [blame]
LemonBoy5247b0b2024-07-12 19:30:58 +02001*tabpage.txt* For Vim version 9.1. Last change: 2024 Jul 12
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|
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000175. Setting 'guitablabel' |setting-guitablabel|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000018
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000019{not able to use multiple tab pages when the |+windows| feature was disabled
20at compile time}
21
22==============================================================================
231. Introduction *tab-page-intro*
24
25A tab page holds one or more windows. You can easily switch between tab
26pages, so that you have several collections of windows to work on different
27things.
28
29Usually you will see a list of labels at the top of the Vim window, one for
30each tab page. With the mouse you can click on the label to jump to that tab
31page. There are other ways to move between tab pages, see below.
32
33Most commands work only in the current tab page. That includes the |CTRL-W|
Bram Moolenaare1438bb2006-03-01 22:01:55 +000034commands, |:windo|, |:all| and |:ball| (when not using the |:tab| modifier).
35The commands that are aware of other tab pages than the current one are
36mentioned below.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000037
38Tabs are also a nice way to edit a buffer temporarily without changing the
39current window layout. Open a new tab page, do whatever you want to do and
40close the tab page.
41
42==============================================================================
432. Commands *tab-page-commands*
44
45OPENING A NEW TAB PAGE:
46
47When starting Vim "vim -p filename ..." opens each file argument in a separate
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +020048tab page (up to 'tabpagemax'). See |-p|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000049
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000050A double click with the mouse in the non-GUI tab pages line opens a new, empty
51tab page. It is placed left of the position of the click. The first click
52may select another tab page first, causing an extra screen update.
53
Bram Moolenaarf193fff2006-04-27 00:02:13 +000054This also works in a few GUI versions, esp. Win32 and Motif. But only when
55clicking right of the labels.
56
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000057In the GUI tab pages line you can use the right mouse button to open menu.
58|tabline-menu|.
Bram Moolenaar80a94a52006-02-23 21:26:58 +000059
Bram Moolenaar46fceaa2016-10-23 21:21:08 +020060For the related autocommands see |tabnew-autocmd|.
61
Bram Moolenaara26559b2010-07-31 14:59:19 +020062:[count]tabe[dit] *:tabe* *:tabedit* *:tabnew*
63:[count]tabnew
64 Open a new tab page with an empty window, after the current
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010065 tab page. If [count] is given the new tab page appears after
66 the tab page [count] otherwise the new tab page will appear
67 after the current one. >
68 :tabnew " opens tabpage after the current one
69 :.tabnew " as above
70 :+tabnew " opens tabpage after the next tab page
71 " note: it is one further than :tabnew
72 :-tabnew " opens tabpage before the current one
73 :0tabnew " opens tabpage before the first one
74 :$tabnew " opens tabpage after the last one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000075
Bram Moolenaara26559b2010-07-31 14:59:19 +020076:[count]tabe[dit] [++opt] [+cmd] {file}
77:[count]tabnew [++opt] [+cmd] {file}
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000078 Open a new tab page and edit {file}, like with |:edit|.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010079 For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000080
Bram Moolenaara26559b2010-07-31 14:59:19 +020081:[count]tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000082 Open a new tab page and edit {file} in 'path', like with
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010083 |:find|. For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000084
Bram Moolenaar80a94a52006-02-23 21:26:58 +000085:[count]tab {cmd} *:tab*
86 Execute {cmd} and when it opens a new window open a new tab
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +000087 page instead. Doesn't work for |:diffsplit|, |:diffpatch|,
88 |:execute| and |:normal|.
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +020089 If [count] is given the new tab page appears after the tab
90 page [count] otherwise the new tab page will appear after the
91 current one.
Bram Moolenaara26559b2010-07-31 14:59:19 +020092 Examples: >
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +020093 :tab split " opens current buffer in new tab page
94 :tab help gt " opens tab page with help for "gt"
95 :.tab help gt " as above
96 :+tab help " opens tab page with help after the next
97 " tab page
98 :-tab help " opens tab page with help before the
99 " current one
100 :0tab help " opens tab page with help before the
101 " first one
102 :$tab help " opens tab page with help after the last
103 " one
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000104
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000105CTRL-W gf Open a new tab page and edit the file name under the cursor.
106 See |CTRL-W_gf|.
107
Bram Moolenaar57657d82006-04-21 22:12:41 +0000108CTRL-W gF Open a new tab page and edit the file name under the cursor
109 and jump to the line number following the file name.
110 See |CTRL-W_gF|.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000111
112CLOSING A TAB PAGE:
113
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000114Closing the last window of a tab page closes the tab page too, unless there is
115only one tab page.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000116
117Using the mouse: If the tab page line is displayed you can click in the "X" at
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000118the top right to close the current tab page. A custom |'tabline'| may show
119something else.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000120
121 *:tabc* *:tabclose*
122:tabc[lose][!] Close current tab page.
123 This command fails when:
124 - There is only one tab page on the screen. *E784*
125 - When 'hidden' is not set, [!] is not used, a buffer has
126 changes, and there is no other window on this buffer.
127 Changes to the buffer are not written and won't get lost, so
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100128 this is a "safe" command. >
129 :tabclose " close the current tab page
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000130
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100131:{count}tabc[lose][!]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000132:tabc[lose][!] {count}
Bram Moolenaar9b451252012-08-15 17:43:31 +0200133 Close tab page {count}. Fails in the same way as `:tabclose`
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100134 above. >
135 :-tabclose " close the previous tab page
136 :+tabclose " close the next tab page
137 :1tabclose " close the first tab page
138 :$tabclose " close the last tab page
Bram Moolenaar8a3b8052022-06-26 12:21:15 +0100139 :tabclose -2 " close the 2nd previous tab page
Bram Moolenaar3df01732017-02-17 22:47:16 +0100140 :tabclose + " close the next tab page
141 :tabclose 3 " close the third tab page
142 :tabclose $ " close the last tab page
Bram Moolenaar94f4ffa2020-08-10 19:21:15 +0200143 :tabclose # " close the last accessed tab page
Bram Moolenaara2baa732022-02-04 16:09:54 +0000144
LemonBoy5247b0b2024-07-12 19:30:58 +0200145When a tab is closed the next tab page will become the current one. This
146behaviour can be customized using the 'tabclose' option.
Bram Moolenaara2baa732022-02-04 16:09:54 +0000147
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000148 *:tabo* *:tabonly*
149:tabo[nly][!] Close all other tab pages.
150 When the 'hidden' option is set, all buffers in closed windows
151 become hidden.
152 When 'hidden' is not set, and the 'autowrite' option is set,
153 modified buffers are written. Otherwise, windows that have
154 buffers that are modified are not removed, unless the [!] is
155 given, then they become hidden. But modified buffers are
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100156 never abandoned, so changes cannot get lost. >
157 :tabonly " close all tab pages except the current
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200158 " one
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100159
160:{count}tabo[nly][!]
Bram Moolenaar3df01732017-02-17 22:47:16 +0100161:tabo[nly][!] {count}
162 Close all tab pages except {count} one. >
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200163 :.tabonly " as above
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100164 :-tabonly " close all tab pages except the previous
165 " one
166 :+tabonly " close all tab pages except the next one
167 :1tabonly " close all tab pages except the first one
168 :$tabonly " close all tab pages except the last one
Bram Moolenaar3df01732017-02-17 22:47:16 +0100169 :tabonly - " close all tab pages except the previous
170 " one
171 :tabonly +2 " close all tab pages except the two next
172 " one
173 :tabonly 1 " close all tab pages except the first one
174 :tabonly $ " close all tab pages except the last one
Bram Moolenaar94f4ffa2020-08-10 19:21:15 +0200175 :tabonly # " close all tab pages except the last
176 " accessed one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000177
178
179SWITCHING TO ANOTHER TAB PAGE:
180
181Using the mouse: If the tab page line is displayed you can click in a tab page
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000182label to switch to that tab page. Click where there is no label to go to the
183next tab page. |'tabline'|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000184
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000185:tabn[ext] *:tabn* *:tabnext* *gt*
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000186<C-PageDown> *CTRL-<PageDown>* *<C-PageDown>*
187gt *i_CTRL-<PageDown>* *i_<C-PageDown>*
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000188 Go to the next tab page. Wraps around from the last to the
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000189 first one.
190
Bram Moolenaar3df01732017-02-17 22:47:16 +0100191:{count}tabn[ext]
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000192:tabn[ext] {count}
Bram Moolenaar3df01732017-02-17 22:47:16 +0100193 Go to tab page {count}. The first tab page has number one. >
194 :-tabnext " go to the previous tab page
195 :+tabnext " go to the next tab page
196 :+2tabnext " go to the two next tab page
197 :1tabnext " go to the first tab page
198 :$tabnext " go to the last tab page
199 :tabnext $ " as above
zeertzjq076faac2024-03-25 16:41:06 +0100200 :tabnext # " go to the last accessed tab page
Bram Moolenaar3df01732017-02-17 22:47:16 +0100201 :tabnext - " go to the previous tab page
202 :tabnext -1 " as above
203 :tabnext + " go to the next tab page
204 :tabnext +1 " as above
205
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000206{count}<C-PageDown>
207{count}gt Go to tab page {count}. The first tab page has number one.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000208
209
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000210:tabp[revious] *:tabp* *:tabprevious* *gT* *:tabN*
211:tabN[ext] *:tabNext* *CTRL-<PageUp>*
212<C-PageUp> *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000213gT Go to the previous tab page. Wraps around from the first one
214 to the last one.
215
216:tabp[revious] {count}
217:tabN[ext] {count}
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000218{count}<C-PageUp>
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000219{count}gT Go {count} tab pages back. Wraps around from the first one
Bram Moolenaar0b0f0992018-05-22 21:41:30 +0200220 to the last one. Note that the use of {count} is different
221 from |:tabnext|, where it is used as the tab page number.
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000222
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000223:tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind*
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000224:tabfir[st] Go to the first tab page.
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000225
226 *:tabl* *:tablast*
227:tabl[ast] Go to the last tab page.
228
Christian Brabandtfed01962024-05-15 21:04:33 +0200229<C-Tab> *g<Tab>* *CTRL-W_g<Tab>* *<C-Tab>*
230g<Tab>
231CTRL-W g<Tab> Go to the last accessed tab page.
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000232
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000233Other commands:
234 *:tabs*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000235:tabs List the tab pages and the windows they contain.
236 Shows a ">" for the current window.
237 Shows a "+" for modified buffers.
Bram Moolenaar7e1479b2016-09-11 15:07:27 +0200238 For example:
239 Tab page 1 ~
240 + tabpage.txt ~
241 ex_docmd.c ~
242 Tab page 2 ~
243 > main.c ~
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000244
245
246REORDERING TAB PAGES:
247
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000248:tabm[ove] [N] *:tabm* *:tabmove*
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200249:[N]tabm[ove]
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000250 Move the current tab page to after tab page N. Use zero to
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200251 make the current tab page the first one. N is counted before
252 the move, thus if the second tab is the current one,
zeertzjq076faac2024-03-25 16:41:06 +0100253 `:tabmove 1` and `:tabmove 2` have no effect.
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200254 Without N the tab page is made the last one. >
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200255 :.tabmove " do nothing
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100256 :-tabmove " move the tab page to the left
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200257 :+tabmove " move the tab page to the right
zeertzjq076faac2024-03-25 16:41:06 +0100258 :0tabmove " move the tab page to the first
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200259 :tabmove 0 " as above
260 :tabmove " move the tab page to the last
261 :$tabmove " as above
262 :tabmove $ " as above
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100263 :tabmove # " move the tab page after the last accessed
Bram Moolenaar94f4ffa2020-08-10 19:21:15 +0200264 " tab page
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000265
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200266:tabm[ove] +[N]
267:tabm[ove] -[N]
268 Move the current tab page N places to the right (with +) or to
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200269 the left (with -). >
270 :tabmove - " move the tab page to the left
271 :tabmove -1 " as above
272 :tabmove + " move the tab page to the right
273 :tabmove +1 " as above
274
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200275
276Note that although it is possible to move a tab behind the N-th one by using
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200277:Ntabmove. And move it by N places by using :+Ntabmove. For clarification what
278+N means in this context see |[range]|.
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200279
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000280
281LOOPING OVER TAB PAGES:
282
283 *:tabd* *:tabdo*
Bram Moolenaara162bc52015-01-07 16:54:21 +0100284:[range]tabd[o] {cmd}
285 Execute {cmd} in each tab page or if [range] is given only in
286 tab pages which tab page number is in the [range]. It works
287 like doing this: >
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000288 :tabfirst
289 :{cmd}
290 :tabnext
291 :{cmd}
292 etc.
293< This only operates in the current window of each tab page.
294 When an error is detected on one tab page, further tab pages
295 will not be visited.
296 The last tab page (or where an error occurred) becomes the
297 current tab page.
298 {cmd} can contain '|' to concatenate several commands.
299 {cmd} must not open or close tab pages or reorder them.
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200300 Also see |:windo|, |:argdo|, |:bufdo|, |:cdo|, |:ldo|, |:cfdo|
301 and |:lfdo|
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000302
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000303==============================================================================
3043. Other items *tab-page-other*
305
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000306 *tabline-menu*
307The GUI tab pages line has a popup menu. It is accessed with a right click.
308The entries are:
309 Close Close the tab page under the mouse pointer. The
310 current one if there is no label under the mouse
311 pointer.
312 New Tab Open a tab page, editing an empty buffer. It appears
313 to the left of the mouse pointer.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000314 Open Tab... Like "New Tab" and additionally use a file selector to
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000315 select a file to edit.
316
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000317Diff mode works per tab page. You can see the diffs between several files
318within one tab page. Other tab pages can show differences between other
319files.
320
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000321Variables local to a tab page start with "t:". |tabpage-variable|
322
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000323Currently there is only one option local to a tab page: 'cmdheight'.
324
Bram Moolenaar46fceaa2016-10-23 21:21:08 +0200325 *tabnew-autocmd*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000326The TabLeave and TabEnter autocommand events can be used to do something when
327switching from one tab page to another. The exact order depends on what you
328are doing. When creating a new tab page this works as if you create a new
329window on the same buffer and then edit another buffer. Thus ":tabnew"
330triggers:
331 WinLeave leave current window
332 TabLeave leave current tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000333 WinEnter enter window in new tab page
Bram Moolenaara162bc52015-01-07 16:54:21 +0100334 TabEnter enter new tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000335 BufLeave leave current buffer
336 BufEnter enter new empty buffer
337
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000338When switching to another tab page the order is:
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000339 BufLeave
340 WinLeave
341 TabLeave
342 TabEnter
343 WinEnter
344 BufEnter
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000345
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000346==============================================================================
3474. Setting 'tabline' *setting-tabline*
348
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000349The 'tabline' option specifies what the line with tab pages labels looks like.
350It is only used when there is no GUI tab line.
351
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000352You can use the 'showtabline' option to specify when you want the line with
353tab page labels to appear: never, when there is more than one tab page or
354always.
355
356The highlighting of the tab pages line is set with the groups TabLine
357TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill|
358
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000359A "+" will be shown for a tab page that has a modified window. The number of
360windows in a tabpage is also shown. Thus "3+" means three windows and one of
361them has a modified buffer.
362
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000363The 'tabline' option allows you to define your preferred way to tab pages
364labels. This isn't easy, thus an example will be given here.
365
366For basics see the 'statusline' option. The same items can be used in the
367'tabline' option. Additionally, the |tabpagebuflist()|, |tabpagenr()| and
368|tabpagewinnr()| functions are useful.
369
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000370Since the number of tab labels will vary, you need to use an expression for
371the whole option. Something like: >
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000372 :set tabline=%!MyTabLine()
373
374Then define the MyTabLine() function to list all the tab pages labels. A
375convenient method is to split it in two parts: First go over all the tab
376pages and define labels for them. Then get the label for each tab page. >
377
378 function MyTabLine()
379 let s = ''
380 for i in range(tabpagenr('$'))
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000381 " select the highlighting
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000382 if i + 1 == tabpagenr()
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000383 let s ..= '%#TabLineSel#'
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000384 else
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000385 let s ..= '%#TabLine#'
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000386 endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000387
388 " set the tab page number (for mouse clicks)
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000389 let s ..= '%' .. (i + 1) .. 'T'
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000390
391 " the label is made by MyTabLabel()
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000392 let s ..= ' %{MyTabLabel(' .. (i + 1) .. ')} '
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000393 endfor
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000394
395 " after the last tab fill with TabLineFill and reset tab page nr
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000396 let s ..= '%#TabLineFill#%T'
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000397
398 " right-align the label to close the current tab page
399 if tabpagenr('$') > 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000400 let s ..= '%=%#TabLine#%999Xclose'
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000401 endif
402
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000403 return s
404 endfunction
405
406Now the MyTabLabel() function is called for each tab page to get its label. >
407
408 function MyTabLabel(n)
409 let buflist = tabpagebuflist(a:n)
410 let winnr = tabpagewinnr(a:n)
411 return bufname(buflist[winnr - 1])
412 endfunction
413
414This is just a simplistic example that results in a tab pages line that
415resembles the default, but without adding a + for a modified buffer or
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000416truncating the names. You will want to reduce the width of labels in a
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000417clever way when there is not enough room. Check the 'columns' option for the
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000418space available.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000419
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000420==============================================================================
4215. Setting 'guitablabel' *setting-guitablabel*
422
423When the GUI tab pages line is displayed, 'guitablabel' can be used to
424specify the label to display for each tab page. Unlike 'tabline', which
425specifies the whole tab pages line at once, 'guitablabel' is used for each
426label separately.
427
Bram Moolenaar57657d82006-04-21 22:12:41 +0000428'guitabtooltip' is very similar and is used for the tooltip of the same label.
429This only appears when the mouse pointer hovers over the label, thus it
430usually is longer. Only supported on some systems though.
431
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000432See the 'statusline' option for the format of the value.
433
434The "%N" item can be used for the current tab page number. The |v:lnum|
Bram Moolenaar57657d82006-04-21 22:12:41 +0000435variable is also set to this number when the option is evaluated.
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000436The items that use a file name refer to the current window of the tab page.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000437
Bram Moolenaar57657d82006-04-21 22:12:41 +0000438Note that syntax highlighting is not used for the option. The %T and %X
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000439items are also ignored.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000440
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000441A simple example that puts the tab page number and the buffer name in the
442label: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000443 :set guitablabel=%N\ %f
444
Bram Moolenaar57657d82006-04-21 22:12:41 +0000445An example that resembles the default 'guitablabel': Show the number of
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000446windows in the tab page and a '+' if there is a modified buffer: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000447
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000448 function GuiTabLabel()
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000449 let label = ''
450 let bufnrlist = tabpagebuflist(v:lnum)
451
452 " Add '+' if one of the buffers in the tab page is modified
453 for bufnr in bufnrlist
454 if getbufvar(bufnr, "&modified")
455 let label = '+'
456 break
457 endif
458 endfor
459
460 " Append the number of windows in the tab page if more than one
461 let wincount = tabpagewinnr(v:lnum, '$')
462 if wincount > 1
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000463 let label ..= wincount
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000464 endif
465 if label != ''
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000466 let label ..= ' '
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000467 endif
468
469 " Append the buffer name
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000470 return label .. bufname(bufnrlist[tabpagewinnr(v:lnum) - 1])
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000471 endfunction
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000472
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000473 set guitablabel=%{GuiTabLabel()}
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000474
475Note that the function must be defined before setting the option, otherwise
476you get an error message for the function not being known.
477
Bram Moolenaard68071d2006-05-02 22:08:30 +0000478If you want to fall back to the default label, return an empty string.
479
480If you want to show something specific for a tab page, you might want to use a
481tab page local variable. |t:var|
482
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000483
Bram Moolenaar91f84f62018-07-29 15:07:52 +0200484 vim:tw=78:ts=8:noet:ft=help:norl: