blob: f2444c017f4b90d6ee32eaa84edd496041ea2fbc [file] [log] [blame]
Bram Moolenaara162bc52015-01-07 16:54:21 +01001*tabpage.txt* For Vim version 7.4. Last change: 2015 Jan 04
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 Moolenaara26559b2010-07-31 14:59:19 +020061:[count]tabe[dit] *:tabe* *:tabedit* *:tabnew*
62:[count]tabnew
63 Open a new tab page with an empty window, after the current
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010064 tab page. If [count] is given the new tab page appears after
65 the tab page [count] otherwise the new tab page will appear
66 after the current one. >
67 :tabnew " opens tabpage after the current one
68 :.tabnew " as above
69 :+tabnew " opens tabpage after the next tab page
70 " note: it is one further than :tabnew
71 :-tabnew " opens tabpage before the current one
72 :0tabnew " opens tabpage before the first one
73 :$tabnew " opens tabpage after the last one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000074
Bram Moolenaara26559b2010-07-31 14:59:19 +020075:[count]tabe[dit] [++opt] [+cmd] {file}
76:[count]tabnew [++opt] [+cmd] {file}
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000077 Open a new tab page and edit {file}, like with |:edit|.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010078 For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000079
Bram Moolenaara26559b2010-07-31 14:59:19 +020080:[count]tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000081 Open a new tab page and edit {file} in 'path', like with
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010082 |:find|. For [count] see |:tabnew| above.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000083 {not available when the |+file_in_path| feature was disabled
84 at compile time}
85
Bram Moolenaar80a94a52006-02-23 21:26:58 +000086:[count]tab {cmd} *:tab*
87 Execute {cmd} and when it opens a new window open a new tab
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +000088 page instead. Doesn't work for |:diffsplit|, |:diffpatch|,
89 |:execute| and |:normal|.
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +020090 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 Moolenaara26559b2010-07-31 14:59:19 +020093 Examples: >
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +020094 :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 Moolenaar80a94a52006-02-23 21:26:58 +0000105
Bram Moolenaar8dff8182006-04-06 20:18:50 +0000106CTRL-W gf Open a new tab page and edit the file name under the cursor.
107 See |CTRL-W_gf|.
108
Bram Moolenaar57657d82006-04-21 22:12:41 +0000109CTRL-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 Moolenaar7e8fd632006-02-18 22:14:51 +0000112
113CLOSING A TAB PAGE:
114
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000115Closing the last window of a tab page closes the tab page too, unless there is
116only one tab page.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000117
118Using the mouse: If the tab page line is displayed you can click in the "X" at
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000119the top right to close the current tab page. A custom |'tabline'| may show
120something else.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000121
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 Moolenaarb96a7f32014-11-27 16:22:48 +0100129 this is a "safe" command. >
130 :tabclose " close the current tab page
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000131
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100132:{count}tabc[lose][!]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000133:tabc[lose][!] {count}
Bram Moolenaar9b451252012-08-15 17:43:31 +0200134 Close tab page {count}. Fails in the same way as `:tabclose`
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100135 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
140<
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000141 *:tabo* *:tabonly*
142:tabo[nly][!] Close all other tab pages.
143 When the 'hidden' option is set, all buffers in closed windows
144 become hidden.
145 When 'hidden' is not set, and the 'autowrite' option is set,
146 modified buffers are written. Otherwise, windows that have
147 buffers that are modified are not removed, unless the [!] is
148 given, then they become hidden. But modified buffers are
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100149 never abandoned, so changes cannot get lost. >
150 :tabonly " close all tab pages except the current
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200151 " one
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100152
153:{count}tabo[nly][!]
154 Close all tab pages except the {count}th one. >
Bram Moolenaar9b7f8ce2016-08-21 19:07:17 +0200155 :.tabonly " as above
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100156 :-tabonly " close all tab pages except the previous
157 " one
158 :+tabonly " close all tab pages except the next one
159 :1tabonly " close all tab pages except the first one
160 :$tabonly " close all tab pages except the last one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000161
162
163SWITCHING TO ANOTHER TAB PAGE:
164
165Using the mouse: If the tab page line is displayed you can click in a tab page
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000166label to switch to that tab page. Click where there is no label to go to the
167next tab page. |'tabline'|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000168
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000169:tabn[ext] *:tabn* *:tabnext* *gt*
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000170<C-PageDown> *CTRL-<PageDown>* *<C-PageDown>*
171gt *i_CTRL-<PageDown>* *i_<C-PageDown>*
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000172 Go to the next tab page. Wraps around from the last to the
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000173 first one.
174
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000175:tabn[ext] {count}
176{count}<C-PageDown>
177{count}gt Go to tab page {count}. The first tab page has number one.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000178
179
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000180:tabp[revious] *:tabp* *:tabprevious* *gT* *:tabN*
181:tabN[ext] *:tabNext* *CTRL-<PageUp>*
182<C-PageUp> *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000183gT Go to the previous tab page. Wraps around from the first one
184 to the last one.
185
186:tabp[revious] {count}
187:tabN[ext] {count}
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000188{count}<C-PageUp>
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000189{count}gT Go {count} tab pages back. Wraps around from the first one
190 to the last one.
191
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000192:tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind*
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000193:tabfir[st] Go to the first tab page.
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000194
195 *:tabl* *:tablast*
196:tabl[ast] Go to the last tab page.
197
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000198
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000199Other commands:
200 *:tabs*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000201:tabs List the tab pages and the windows they contain.
202 Shows a ">" for the current window.
203 Shows a "+" for modified buffers.
204
205
206REORDERING TAB PAGES:
207
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000208:tabm[ove] [N] *:tabm* *:tabmove*
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200209:[N]tabm[ove]
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000210 Move the current tab page to after tab page N. Use zero to
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000211 make the current tab page the first one. Without N the tab
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100212 page is made the last one. >
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200213 :.tabmove " do nothing
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100214 :-tabmove " move the tab page to the left
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200215 :+tabmove " move the tab page to the right
Bram Moolenaara162bc52015-01-07 16:54:21 +0100216 :0tabmove " move the tab page to the beginning of the tab
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100217 " list
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200218 :tabmove 0 " as above
219 :tabmove " move the tab page to the last
220 :$tabmove " as above
221 :tabmove $ " as above
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000222
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200223:tabm[ove] +[N]
224:tabm[ove] -[N]
225 Move the current tab page N places to the right (with +) or to
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200226 the left (with -). >
227 :tabmove - " move the tab page to the left
228 :tabmove -1 " as above
229 :tabmove + " move the tab page to the right
230 :tabmove +1 " as above
231
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200232
233Note that although it is possible to move a tab behind the N-th one by using
Bram Moolenaar40ce3a42015-04-21 18:08:39 +0200234:Ntabmove. And move it by N places by using :+Ntabmove. For clarification what
235+N means in this context see |[range]|.
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200236
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000237
238LOOPING OVER TAB PAGES:
239
240 *:tabd* *:tabdo*
Bram Moolenaara162bc52015-01-07 16:54:21 +0100241:[range]tabd[o] {cmd}
242 Execute {cmd} in each tab page or if [range] is given only in
243 tab pages which tab page number is in the [range]. It works
244 like doing this: >
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000245 :tabfirst
246 :{cmd}
247 :tabnext
248 :{cmd}
249 etc.
250< This only operates in the current window of each tab page.
251 When an error is detected on one tab page, further tab pages
252 will not be visited.
253 The last tab page (or where an error occurred) becomes the
254 current tab page.
255 {cmd} can contain '|' to concatenate several commands.
256 {cmd} must not open or close tab pages or reorder them.
257 {not in Vi} {not available when compiled without the
258 |+listcmds| feature}
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200259 Also see |:windo|, |:argdo|, |:bufdo|, |:cdo|, |:ldo|, |:cfdo|
260 and |:lfdo|
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000261
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000262==============================================================================
2633. Other items *tab-page-other*
264
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000265 *tabline-menu*
266The GUI tab pages line has a popup menu. It is accessed with a right click.
267The entries are:
268 Close Close the tab page under the mouse pointer. The
269 current one if there is no label under the mouse
270 pointer.
271 New Tab Open a tab page, editing an empty buffer. It appears
272 to the left of the mouse pointer.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000273 Open Tab... Like "New Tab" and additionally use a file selector to
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000274 select a file to edit.
275
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000276Diff mode works per tab page. You can see the diffs between several files
277within one tab page. Other tab pages can show differences between other
278files.
279
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000280Variables local to a tab page start with "t:". |tabpage-variable|
281
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000282Currently there is only one option local to a tab page: 'cmdheight'.
283
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000284The TabLeave and TabEnter autocommand events can be used to do something when
285switching from one tab page to another. The exact order depends on what you
286are doing. When creating a new tab page this works as if you create a new
287window on the same buffer and then edit another buffer. Thus ":tabnew"
288triggers:
289 WinLeave leave current window
290 TabLeave leave current tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000291 WinEnter enter window in new tab page
Bram Moolenaara162bc52015-01-07 16:54:21 +0100292 TabEnter enter new tab page
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000293 BufLeave leave current buffer
294 BufEnter enter new empty buffer
295
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000296When switching to another tab page the order is:
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000297 BufLeave
298 WinLeave
299 TabLeave
300 TabEnter
301 WinEnter
302 BufEnter
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000303
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000304==============================================================================
3054. Setting 'tabline' *setting-tabline*
306
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000307The 'tabline' option specifies what the line with tab pages labels looks like.
308It is only used when there is no GUI tab line.
309
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000310You can use the 'showtabline' option to specify when you want the line with
311tab page labels to appear: never, when there is more than one tab page or
312always.
313
314The highlighting of the tab pages line is set with the groups TabLine
315TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill|
316
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000317A "+" will be shown for a tab page that has a modified window. The number of
318windows in a tabpage is also shown. Thus "3+" means three windows and one of
319them has a modified buffer.
320
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000321The 'tabline' option allows you to define your preferred way to tab pages
322labels. This isn't easy, thus an example will be given here.
323
324For basics see the 'statusline' option. The same items can be used in the
325'tabline' option. Additionally, the |tabpagebuflist()|, |tabpagenr()| and
326|tabpagewinnr()| functions are useful.
327
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000328Since the number of tab labels will vary, you need to use an expression for
329the whole option. Something like: >
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000330 :set tabline=%!MyTabLine()
331
332Then define the MyTabLine() function to list all the tab pages labels. A
333convenient method is to split it in two parts: First go over all the tab
334pages and define labels for them. Then get the label for each tab page. >
335
336 function MyTabLine()
337 let s = ''
338 for i in range(tabpagenr('$'))
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000339 " select the highlighting
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000340 if i + 1 == tabpagenr()
341 let s .= '%#TabLineSel#'
342 else
343 let s .= '%#TabLine#'
344 endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000345
346 " set the tab page number (for mouse clicks)
347 let s .= '%' . (i + 1) . 'T'
348
349 " the label is made by MyTabLabel()
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000350 let s .= ' %{MyTabLabel(' . (i + 1) . ')} '
351 endfor
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000352
353 " after the last tab fill with TabLineFill and reset tab page nr
354 let s .= '%#TabLineFill#%T'
355
356 " right-align the label to close the current tab page
357 if tabpagenr('$') > 1
358 let s .= '%=%#TabLine#%999Xclose'
359 endif
360
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000361 return s
362 endfunction
363
364Now the MyTabLabel() function is called for each tab page to get its label. >
365
366 function MyTabLabel(n)
367 let buflist = tabpagebuflist(a:n)
368 let winnr = tabpagewinnr(a:n)
369 return bufname(buflist[winnr - 1])
370 endfunction
371
372This is just a simplistic example that results in a tab pages line that
373resembles the default, but without adding a + for a modified buffer or
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000374truncating the names. You will want to reduce the width of labels in a
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000375clever way when there is not enough room. Check the 'columns' option for the
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000376space available.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000377
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000378==============================================================================
3795. Setting 'guitablabel' *setting-guitablabel*
380
381When the GUI tab pages line is displayed, 'guitablabel' can be used to
382specify the label to display for each tab page. Unlike 'tabline', which
383specifies the whole tab pages line at once, 'guitablabel' is used for each
384label separately.
385
Bram Moolenaar57657d82006-04-21 22:12:41 +0000386'guitabtooltip' is very similar and is used for the tooltip of the same label.
387This only appears when the mouse pointer hovers over the label, thus it
388usually is longer. Only supported on some systems though.
389
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000390See the 'statusline' option for the format of the value.
391
392The "%N" item can be used for the current tab page number. The |v:lnum|
Bram Moolenaar57657d82006-04-21 22:12:41 +0000393variable is also set to this number when the option is evaluated.
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000394The items that use a file name refer to the current window of the tab page.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000395
Bram Moolenaar57657d82006-04-21 22:12:41 +0000396Note that syntax highlighting is not used for the option. The %T and %X
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000397items are also ignored.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000398
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000399A simple example that puts the tab page number and the buffer name in the
400label: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000401 :set guitablabel=%N\ %f
402
Bram Moolenaar57657d82006-04-21 22:12:41 +0000403An example that resembles the default 'guitablabel': Show the number of
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000404windows in the tab page and a '+' if there is a modified buffer: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000405
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000406 function GuiTabLabel()
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000407 let label = ''
408 let bufnrlist = tabpagebuflist(v:lnum)
409
410 " Add '+' if one of the buffers in the tab page is modified
411 for bufnr in bufnrlist
412 if getbufvar(bufnr, "&modified")
413 let label = '+'
414 break
415 endif
416 endfor
417
418 " Append the number of windows in the tab page if more than one
419 let wincount = tabpagewinnr(v:lnum, '$')
420 if wincount > 1
421 let label .= wincount
422 endif
423 if label != ''
424 let label .= ' '
425 endif
426
427 " Append the buffer name
428 return label . bufname(bufnrlist[tabpagewinnr(v:lnum) - 1])
429 endfunction
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000430
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000431 set guitablabel=%{GuiTabLabel()}
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000432
433Note that the function must be defined before setting the option, otherwise
434you get an error message for the function not being known.
435
Bram Moolenaard68071d2006-05-02 22:08:30 +0000436If you want to fall back to the default label, return an empty string.
437
438If you want to show something specific for a tab page, you might want to use a
439tab page local variable. |t:var|
440
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000441
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000442 vim:tw=78:ts=8:ft=help:norl: