blob: 1d3365c3cd250e540134b6c6ec7c6f40ae9cbd16 [file] [log] [blame]
Bram Moolenaarb1c91982018-05-17 17:04:55 +02001*tabpage.txt* For Vim version 8.1. Last change: 2018 Mar 29
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
19{Vi does not have any of these commands}
20{not able to use multiple tab pages when the |+windows| feature was disabled
21at compile time}
22
23==============================================================================
241. Introduction *tab-page-intro*
25
26A tab page holds one or more windows. You can easily switch between tab
27pages, so that you have several collections of windows to work on different
28things.
29
30Usually you will see a list of labels at the top of the Vim window, one for
31each tab page. With the mouse you can click on the label to jump to that tab
32page. There are other ways to move between tab pages, see below.
33
34Most commands work only in the current tab page. That includes the |CTRL-W|
Bram Moolenaare1438bb2006-03-01 22:01:55 +000035commands, |:windo|, |:all| and |:ball| (when not using the |:tab| modifier).
36The commands that are aware of other tab pages than the current one are
37mentioned below.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000038
39Tabs are also a nice way to edit a buffer temporarily without changing the
40current window layout. Open a new tab page, do whatever you want to do and
41close the tab page.
42
43==============================================================================
442. Commands *tab-page-commands*
45
46OPENING A NEW TAB PAGE:
47
48When starting Vim "vim -p filename ..." opens each file argument in a separate
Bram Moolenaar58f0a1f2010-07-17 16:30:42 +020049tab page (up to 'tabpagemax'). See |-p|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000050
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000051A double click with the mouse in the non-GUI tab pages line opens a new, empty
52tab page. It is placed left of the position of the click. The first click
53may select another tab page first, causing an extra screen update.
54
Bram Moolenaarf193fff2006-04-27 00:02:13 +000055This also works in a few GUI versions, esp. Win32 and Motif. But only when
56clicking right of the labels.
57
Bram Moolenaarbfb2d402006-03-03 22:50:42 +000058In the GUI tab pages line you can use the right mouse button to open menu.
59|tabline-menu|.
Bram Moolenaar80a94a52006-02-23 21:26:58 +000060
Bram Moolenaar46fceaa2016-10-23 21:21:08 +020061For the related autocommands see |tabnew-autocmd|.
62
Bram Moolenaara26559b2010-07-31 14:59:19 +020063:[count]tabe[dit] *:tabe* *:tabedit* *:tabnew*
64:[count]tabnew
65 Open a new tab page with an empty window, after the current
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010066 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 Moolenaar7e8fd632006-02-18 22:14:51 +000076
Bram Moolenaara26559b2010-07-31 14:59:19 +020077:[count]tabe[dit] [++opt] [+cmd] {file}
78:[count]tabnew [++opt] [+cmd] {file}
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000079 Open a new tab page and edit {file}, like with |:edit|.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010080 For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000081
Bram Moolenaara26559b2010-07-31 14:59:19 +020082:[count]tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000083 Open a new tab page and edit {file} in 'path', like with
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010084 |:find|. For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000085 {not available when the |+file_in_path| feature was disabled
86 at compile time}
87
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 Moolenaar3df01732017-02-17 22:47:16 +0100142 :tabclose -2 " close the two previous tab page
143 :tabclose + " close the next tab page
144 :tabclose 3 " close the third tab page
145 :tabclose $ " close the last tab page
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100146<
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000147 *:tabo* *:tabonly*
148:tabo[nly][!] Close all other tab pages.
149 When the 'hidden' option is set, all buffers in closed windows
150 become hidden.
151 When 'hidden' is not set, and the 'autowrite' option is set,
152 modified buffers are written. Otherwise, windows that have
153 buffers that are modified are not removed, unless the [!] is
154 given, then they become hidden. But modified buffers are
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100155 never abandoned, so changes cannot get lost. >
156 :tabonly " close all tab pages except the current
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200157 " one
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100158
159:{count}tabo[nly][!]
Bram Moolenaar3df01732017-02-17 22:47:16 +0100160:tabo[nly][!] {count}
161 Close all tab pages except {count} one. >
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200162 :.tabonly " as above
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100163 :-tabonly " close all tab pages except the previous
164 " one
165 :+tabonly " close all tab pages except the next one
166 :1tabonly " close all tab pages except the first one
167 :$tabonly " close all tab pages except the last one
Bram Moolenaar3df01732017-02-17 22:47:16 +0100168 :tabonly - " close all tab pages except the previous
169 " one
170 :tabonly +2 " close all tab pages except the two next
171 " one
172 :tabonly 1 " close all tab pages except the first one
173 :tabonly $ " close all tab pages except the last one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000174
175
176SWITCHING TO ANOTHER TAB PAGE:
177
178Using the mouse: If the tab page line is displayed you can click in a tab page
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000179label to switch to that tab page. Click where there is no label to go to the
180next tab page. |'tabline'|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000181
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000182:tabn[ext] *:tabn* *:tabnext* *gt*
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000183<C-PageDown> *CTRL-<PageDown>* *<C-PageDown>*
184gt *i_CTRL-<PageDown>* *i_<C-PageDown>*
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000185 Go to the next tab page. Wraps around from the last to the
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000186 first one.
187
Bram Moolenaar3df01732017-02-17 22:47:16 +0100188:{count}tabn[ext]
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000189:tabn[ext] {count}
Bram Moolenaar3df01732017-02-17 22:47:16 +0100190 Go to tab page {count}. The first tab page has number one. >
191 :-tabnext " go to the previous tab page
192 :+tabnext " go to the next tab page
193 :+2tabnext " go to the two next tab page
194 :1tabnext " go to the first tab page
195 :$tabnext " go to the last tab page
196 :tabnext $ " as above
197 :tabnext - " go to the previous tab page
198 :tabnext -1 " as above
199 :tabnext + " go to the next tab page
200 :tabnext +1 " as above
201
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000202{count}<C-PageDown>
203{count}gt Go to tab page {count}. The first tab page has number one.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000204
205
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000206:tabp[revious] *:tabp* *:tabprevious* *gT* *:tabN*
207:tabN[ext] *:tabNext* *CTRL-<PageUp>*
208<C-PageUp> *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000209gT Go to the previous tab page. Wraps around from the first one
210 to the last one.
211
212:tabp[revious] {count}
213:tabN[ext] {count}
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000214{count}<C-PageUp>
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000215{count}gT Go {count} tab pages back. Wraps around from the first one
Bram Moolenaar0b0f0992018-05-22 21:41:30 +0200216 to the last one. Note that the use of {count} is different
217 from |:tabnext|, where it is used as the tab page number.
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000218
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000219:tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind*
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000220:tabfir[st] Go to the first tab page.
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000221
222 *:tabl* *:tablast*
223:tabl[ast] Go to the last tab page.
224
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000225
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000226Other commands:
227 *:tabs*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000228:tabs List the tab pages and the windows they contain.
229 Shows a ">" for the current window.
230 Shows a "+" for modified buffers.
Bram Moolenaar7e1479b2016-09-11 15:07:27 +0200231 For example:
232 Tab page 1 ~
233 + tabpage.txt ~
234 ex_docmd.c ~
235 Tab page 2 ~
236 > main.c ~
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000237
238
239REORDERING TAB PAGES:
240
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000241:tabm[ove] [N] *:tabm* *:tabmove*
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200242:[N]tabm[ove]
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000243 Move the current tab page to after tab page N. Use zero to
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200244 make the current tab page the first one. N is counted before
245 the move, thus if the second tab is the current one,
246 `:tabmove 1`` and `:tabmove 2` have no effect.
247 Without N the tab page is made the last one. >
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200248 :.tabmove " do nothing
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100249 :-tabmove " move the tab page to the left
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200250 :+tabmove " move the tab page to the right
Bram Moolenaara162bc52015-01-07 16:54:21 +0100251 :0tabmove " move the tab page to the beginning of the tab
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100252 " list
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200253 :tabmove 0 " as above
254 :tabmove " move the tab page to the last
255 :$tabmove " as above
256 :tabmove $ " as above
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000257
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200258:tabm[ove] +[N]
259:tabm[ove] -[N]
260 Move the current tab page N places to the right (with +) or to
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200261 the left (with -). >
262 :tabmove - " move the tab page to the left
263 :tabmove -1 " as above
264 :tabmove + " move the tab page to the right
265 :tabmove +1 " as above
266
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200267
268Note that although it is possible to move a tab behind the N-th one by using
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200269:Ntabmove. And move it by N places by using :+Ntabmove. For clarification what
270+N means in this context see |[range]|.
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200271
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000272
273LOOPING OVER TAB PAGES:
274
275 *:tabd* *:tabdo*
Bram Moolenaara162bc52015-01-07 16:54:21 +0100276:[range]tabd[o] {cmd}
277 Execute {cmd} in each tab page or if [range] is given only in
278 tab pages which tab page number is in the [range]. It works
279 like doing this: >
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000280 :tabfirst
281 :{cmd}
282 :tabnext
283 :{cmd}
284 etc.
285< This only operates in the current window of each tab page.
286 When an error is detected on one tab page, further tab pages
287 will not be visited.
288 The last tab page (or where an error occurred) becomes the
289 current tab page.
290 {cmd} can contain '|' to concatenate several commands.
291 {cmd} must not open or close tab pages or reorder them.
Bram Moolenaarab943432018-03-29 18:27:07 +0200292 {not in Vi}
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200293 Also see |:windo|, |:argdo|, |:bufdo|, |:cdo|, |:ldo|, |:cfdo|
294 and |:lfdo|
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000295
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000296==============================================================================
2973. Other items *tab-page-other*
298
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000299 *tabline-menu*
300The GUI tab pages line has a popup menu. It is accessed with a right click.
301The entries are:
302 Close Close the tab page under the mouse pointer. The
303 current one if there is no label under the mouse
304 pointer.
305 New Tab Open a tab page, editing an empty buffer. It appears
306 to the left of the mouse pointer.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000307 Open Tab... Like "New Tab" and additionally use a file selector to
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000308 select a file to edit.
309
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000310Diff mode works per tab page. You can see the diffs between several files
311within one tab page. Other tab pages can show differences between other
312files.
313
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000314Variables local to a tab page start with "t:". |tabpage-variable|
315
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000316Currently there is only one option local to a tab page: 'cmdheight'.
317
Bram Moolenaar46fceaa2016-10-23 21:21:08 +0200318 *tabnew-autocmd*
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000319The TabLeave and TabEnter autocommand events can be used to do something when
320switching from one tab page to another. The exact order depends on what you
321are doing. When creating a new tab page this works as if you create a new
322window on the same buffer and then edit another buffer. Thus ":tabnew"
323triggers:
324 WinLeave leave current window
325 TabLeave leave current tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000326 WinEnter enter window in new tab page
Bram Moolenaara162bc52015-01-07 16:54:21 +0100327 TabEnter enter new tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000328 BufLeave leave current buffer
329 BufEnter enter new empty buffer
330
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000331When switching to another tab page the order is:
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000332 BufLeave
333 WinLeave
334 TabLeave
335 TabEnter
336 WinEnter
337 BufEnter
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000338
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000339==============================================================================
3404. Setting 'tabline' *setting-tabline*
341
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000342The 'tabline' option specifies what the line with tab pages labels looks like.
343It is only used when there is no GUI tab line.
344
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000345You can use the 'showtabline' option to specify when you want the line with
346tab page labels to appear: never, when there is more than one tab page or
347always.
348
349The highlighting of the tab pages line is set with the groups TabLine
350TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill|
351
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000352A "+" will be shown for a tab page that has a modified window. The number of
353windows in a tabpage is also shown. Thus "3+" means three windows and one of
354them has a modified buffer.
355
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000356The 'tabline' option allows you to define your preferred way to tab pages
357labels. This isn't easy, thus an example will be given here.
358
359For basics see the 'statusline' option. The same items can be used in the
360'tabline' option. Additionally, the |tabpagebuflist()|, |tabpagenr()| and
361|tabpagewinnr()| functions are useful.
362
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000363Since the number of tab labels will vary, you need to use an expression for
364the whole option. Something like: >
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000365 :set tabline=%!MyTabLine()
366
367Then define the MyTabLine() function to list all the tab pages labels. A
368convenient method is to split it in two parts: First go over all the tab
369pages and define labels for them. Then get the label for each tab page. >
370
371 function MyTabLine()
372 let s = ''
373 for i in range(tabpagenr('$'))
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000374 " select the highlighting
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000375 if i + 1 == tabpagenr()
376 let s .= '%#TabLineSel#'
377 else
378 let s .= '%#TabLine#'
379 endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000380
381 " set the tab page number (for mouse clicks)
382 let s .= '%' . (i + 1) . 'T'
383
384 " the label is made by MyTabLabel()
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000385 let s .= ' %{MyTabLabel(' . (i + 1) . ')} '
386 endfor
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000387
388 " after the last tab fill with TabLineFill and reset tab page nr
389 let s .= '%#TabLineFill#%T'
390
391 " right-align the label to close the current tab page
392 if tabpagenr('$') > 1
393 let s .= '%=%#TabLine#%999Xclose'
394 endif
395
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000396 return s
397 endfunction
398
399Now the MyTabLabel() function is called for each tab page to get its label. >
400
401 function MyTabLabel(n)
402 let buflist = tabpagebuflist(a:n)
403 let winnr = tabpagewinnr(a:n)
404 return bufname(buflist[winnr - 1])
405 endfunction
406
407This is just a simplistic example that results in a tab pages line that
408resembles the default, but without adding a + for a modified buffer or
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000409truncating the names. You will want to reduce the width of labels in a
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000410clever way when there is not enough room. Check the 'columns' option for the
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000411space available.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000412
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000413==============================================================================
4145. Setting 'guitablabel' *setting-guitablabel*
415
416When the GUI tab pages line is displayed, 'guitablabel' can be used to
417specify the label to display for each tab page. Unlike 'tabline', which
418specifies the whole tab pages line at once, 'guitablabel' is used for each
419label separately.
420
Bram Moolenaar57657d82006-04-21 22:12:41 +0000421'guitabtooltip' is very similar and is used for the tooltip of the same label.
422This only appears when the mouse pointer hovers over the label, thus it
423usually is longer. Only supported on some systems though.
424
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000425See the 'statusline' option for the format of the value.
426
427The "%N" item can be used for the current tab page number. The |v:lnum|
Bram Moolenaar57657d82006-04-21 22:12:41 +0000428variable is also set to this number when the option is evaluated.
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000429The items that use a file name refer to the current window of the tab page.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000430
Bram Moolenaar57657d82006-04-21 22:12:41 +0000431Note that syntax highlighting is not used for the option. The %T and %X
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000432items are also ignored.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000433
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000434A simple example that puts the tab page number and the buffer name in the
435label: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000436 :set guitablabel=%N\ %f
437
Bram Moolenaar57657d82006-04-21 22:12:41 +0000438An example that resembles the default 'guitablabel': Show the number of
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000439windows in the tab page and a '+' if there is a modified buffer: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000440
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000441 function GuiTabLabel()
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000442 let label = ''
443 let bufnrlist = tabpagebuflist(v:lnum)
444
445 " Add '+' if one of the buffers in the tab page is modified
446 for bufnr in bufnrlist
447 if getbufvar(bufnr, "&modified")
448 let label = '+'
449 break
450 endif
451 endfor
452
453 " Append the number of windows in the tab page if more than one
454 let wincount = tabpagewinnr(v:lnum, '$')
455 if wincount > 1
456 let label .= wincount
457 endif
458 if label != ''
459 let label .= ' '
460 endif
461
462 " Append the buffer name
463 return label . bufname(bufnrlist[tabpagewinnr(v:lnum) - 1])
464 endfunction
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000465
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000466 set guitablabel=%{GuiTabLabel()}
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000467
468Note that the function must be defined before setting the option, otherwise
469you get an error message for the function not being known.
470
Bram Moolenaard68071d2006-05-02 22:08:30 +0000471If you want to fall back to the default label, return an empty string.
472
473If you want to show something specific for a tab page, you might want to use a
474tab page local variable. |t:var|
475
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000476
Bram Moolenaar91f84f62018-07-29 15:07:52 +0200477 vim:tw=78:ts=8:noet:ft=help:norl: