blob: 47e1a4b6747a78bdbc6759cb93fc86fc36de8709 [file] [log] [blame]
Bram Moolenaared32d942014-12-06 23:33:00 +01001*tabpage.txt* For Vim version 7.4. Last change: 2014 Nov 27
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 Moolenaar80a94a52006-02-23 21:26:58 +000090 When [count] is omitted the tab page appears after the current
Bram Moolenaara26559b2010-07-31 14:59:19 +020091 one.
92 When [count] is specified the new tab page comes after tab
93 page [count]. Use ":0tab cmd" to get the new tab page as the
94 first one.
95 Examples: >
Bram Moolenaar80a94a52006-02-23 21:26:58 +000096 :tab split " opens current buffer in new tab page
97 :tab help gt " opens tab page with help for "gt"
98
Bram Moolenaar8dff8182006-04-06 20:18:50 +000099CTRL-W gf Open a new tab page and edit the file name under the cursor.
100 See |CTRL-W_gf|.
101
Bram Moolenaar57657d82006-04-21 22:12:41 +0000102CTRL-W gF Open a new tab page and edit the file name under the cursor
103 and jump to the line number following the file name.
104 See |CTRL-W_gF|.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000105
106CLOSING A TAB PAGE:
107
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000108Closing the last window of a tab page closes the tab page too, unless there is
109only one tab page.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000110
111Using the mouse: If the tab page line is displayed you can click in the "X" at
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000112the top right to close the current tab page. A custom |'tabline'| may show
113something else.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000114
115 *:tabc* *:tabclose*
116:tabc[lose][!] Close current tab page.
117 This command fails when:
118 - There is only one tab page on the screen. *E784*
119 - When 'hidden' is not set, [!] is not used, a buffer has
120 changes, and there is no other window on this buffer.
121 Changes to the buffer are not written and won't get lost, so
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100122 this is a "safe" command. >
123 :tabclose " close the current tab page
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000124
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100125:{count}tabc[lose][!]
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000126:tabc[lose][!] {count}
Bram Moolenaar9b451252012-08-15 17:43:31 +0200127 Close tab page {count}. Fails in the same way as `:tabclose`
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100128 above. >
129 :-tabclose " close the previous tab page
130 :+tabclose " close the next tab page
131 :1tabclose " close the first tab page
132 :$tabclose " close the last tab page
133<
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000134 *:tabo* *:tabonly*
135:tabo[nly][!] Close all other tab pages.
136 When the 'hidden' option is set, all buffers in closed windows
137 become hidden.
138 When 'hidden' is not set, and the 'autowrite' option is set,
139 modified buffers are written. Otherwise, windows that have
140 buffers that are modified are not removed, unless the [!] is
141 given, then they become hidden. But modified buffers are
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100142 never abandoned, so changes cannot get lost. >
143 :tabonly " close all tab pages except the current
144
145:{count}tabo[nly][!]
146 Close all tab pages except the {count}th one. >
147 :.tabonly " one
148 :-tabonly " close all tab pages except the previous
149 " one
150 :+tabonly " close all tab pages except the next one
151 :1tabonly " close all tab pages except the first one
152 :$tabonly " close all tab pages except the last one
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000153
154
155SWITCHING TO ANOTHER TAB PAGE:
156
157Using the mouse: If the tab page line is displayed you can click in a tab page
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000158label to switch to that tab page. Click where there is no label to go to the
159next tab page. |'tabline'|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000160
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000161:tabn[ext] *:tabn* *:tabnext* *gt*
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000162<C-PageDown> *CTRL-<PageDown>* *<C-PageDown>*
163gt *i_CTRL-<PageDown>* *i_<C-PageDown>*
Bram Moolenaar7fc904b2006-04-13 20:37:35 +0000164 Go to the next tab page. Wraps around from the last to the
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000165 first one.
166
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000167:tabn[ext] {count}
168{count}<C-PageDown>
169{count}gt Go to tab page {count}. The first tab page has number one.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000170
171
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000172:tabp[revious] *:tabp* *:tabprevious* *gT* *:tabN*
173:tabN[ext] *:tabNext* *CTRL-<PageUp>*
174<C-PageUp> *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000175gT Go to the previous tab page. Wraps around from the first one
176 to the last one.
177
178:tabp[revious] {count}
179:tabN[ext] {count}
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000180{count}<C-PageUp>
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000181{count}gT Go {count} tab pages back. Wraps around from the first one
182 to the last one.
183
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000184:tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind*
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000185:tabfir[st] Go to the first tab page.
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000186
187 *:tabl* *:tablast*
188:tabl[ast] Go to the last tab page.
189
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000190
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000191Other commands:
192 *:tabs*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000193:tabs List the tab pages and the windows they contain.
194 Shows a ">" for the current window.
195 Shows a "+" for modified buffers.
196
197
198REORDERING TAB PAGES:
199
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000200:tabm[ove] [N] *:tabm* *:tabmove*
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200201:[N]tabm[ove]
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000202 Move the current tab page to after tab page N. Use zero to
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000203 make the current tab page the first one. Without N the tab
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100204 page is made the last one. >
205 :-tabmove " move the tab page to the left
206 :tabmove " move the tab page to the right
207 :.tabmove " as above
208 :+tabmove " as above
209 :0tabmove " move the tab page to the begining of the tab
210 " list
211 :$tabmove " move the tab page to the end of the tab list
212<
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000213
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +0200214:tabm[ove] +[N]
215:tabm[ove] -[N]
216 Move the current tab page N places to the right (with +) or to
217 the left (with -).
218
219Note that although it is possible to move a tab behind the N-th one by using
220:Ntabmove, it is impossible to move it by N places by using :+Ntabmove. For
221clarification what +N means in this context see |[range]|.
222
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000223
224LOOPING OVER TAB PAGES:
225
226 *:tabd* *:tabdo*
227:tabd[o] {cmd} Execute {cmd} in each tab page.
228 It works like doing this: >
229 :tabfirst
230 :{cmd}
231 :tabnext
232 :{cmd}
233 etc.
234< This only operates in the current window of each tab page.
235 When an error is detected on one tab page, further tab pages
236 will not be visited.
237 The last tab page (or where an error occurred) becomes the
238 current tab page.
239 {cmd} can contain '|' to concatenate several commands.
240 {cmd} must not open or close tab pages or reorder them.
241 {not in Vi} {not available when compiled without the
242 |+listcmds| feature}
243 Also see |:windo|, |:argdo| and |:bufdo|.
244
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000245==============================================================================
2463. Other items *tab-page-other*
247
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000248 *tabline-menu*
249The GUI tab pages line has a popup menu. It is accessed with a right click.
250The entries are:
251 Close Close the tab page under the mouse pointer. The
252 current one if there is no label under the mouse
253 pointer.
254 New Tab Open a tab page, editing an empty buffer. It appears
255 to the left of the mouse pointer.
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000256 Open Tab... Like "New Tab" and additionally use a file selector to
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000257 select a file to edit.
258
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000259Diff mode works per tab page. You can see the diffs between several files
260within one tab page. Other tab pages can show differences between other
261files.
262
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000263Variables local to a tab page start with "t:". |tabpage-variable|
264
Bram Moolenaarc6fe9192006-04-09 21:54:49 +0000265Currently there is only one option local to a tab page: 'cmdheight'.
266
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000267The TabLeave and TabEnter autocommand events can be used to do something when
268switching from one tab page to another. The exact order depends on what you
269are doing. When creating a new tab page this works as if you create a new
270window on the same buffer and then edit another buffer. Thus ":tabnew"
271triggers:
272 WinLeave leave current window
273 TabLeave leave current tab page
274 TabEnter enter new tab page
275 WinEnter enter window in new tab page
276 BufLeave leave current buffer
277 BufEnter enter new empty buffer
278
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000279When switching to another tab page the order is:
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000280 BufLeave
281 WinLeave
282 TabLeave
283 TabEnter
284 WinEnter
285 BufEnter
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000286
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000287==============================================================================
2884. Setting 'tabline' *setting-tabline*
289
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000290The 'tabline' option specifies what the line with tab pages labels looks like.
291It is only used when there is no GUI tab line.
292
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000293You can use the 'showtabline' option to specify when you want the line with
294tab page labels to appear: never, when there is more than one tab page or
295always.
296
297The highlighting of the tab pages line is set with the groups TabLine
298TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill|
299
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000300A "+" will be shown for a tab page that has a modified window. The number of
301windows in a tabpage is also shown. Thus "3+" means three windows and one of
302them has a modified buffer.
303
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000304The 'tabline' option allows you to define your preferred way to tab pages
305labels. This isn't easy, thus an example will be given here.
306
307For basics see the 'statusline' option. The same items can be used in the
308'tabline' option. Additionally, the |tabpagebuflist()|, |tabpagenr()| and
309|tabpagewinnr()| functions are useful.
310
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000311Since the number of tab labels will vary, you need to use an expression for
312the whole option. Something like: >
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000313 :set tabline=%!MyTabLine()
314
315Then define the MyTabLine() function to list all the tab pages labels. A
316convenient method is to split it in two parts: First go over all the tab
317pages and define labels for them. Then get the label for each tab page. >
318
319 function MyTabLine()
320 let s = ''
321 for i in range(tabpagenr('$'))
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000322 " select the highlighting
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000323 if i + 1 == tabpagenr()
324 let s .= '%#TabLineSel#'
325 else
326 let s .= '%#TabLine#'
327 endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000328
329 " set the tab page number (for mouse clicks)
330 let s .= '%' . (i + 1) . 'T'
331
332 " the label is made by MyTabLabel()
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000333 let s .= ' %{MyTabLabel(' . (i + 1) . ')} '
334 endfor
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000335
336 " after the last tab fill with TabLineFill and reset tab page nr
337 let s .= '%#TabLineFill#%T'
338
339 " right-align the label to close the current tab page
340 if tabpagenr('$') > 1
341 let s .= '%=%#TabLine#%999Xclose'
342 endif
343
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000344 return s
345 endfunction
346
347Now the MyTabLabel() function is called for each tab page to get its label. >
348
349 function MyTabLabel(n)
350 let buflist = tabpagebuflist(a:n)
351 let winnr = tabpagewinnr(a:n)
352 return bufname(buflist[winnr - 1])
353 endfunction
354
355This is just a simplistic example that results in a tab pages line that
356resembles the default, but without adding a + for a modified buffer or
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000357truncating the names. You will want to reduce the width of labels in a
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000358clever way when there is not enough room. Check the 'columns' option for the
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000359space available.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000360
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000361==============================================================================
3625. Setting 'guitablabel' *setting-guitablabel*
363
364When the GUI tab pages line is displayed, 'guitablabel' can be used to
365specify the label to display for each tab page. Unlike 'tabline', which
366specifies the whole tab pages line at once, 'guitablabel' is used for each
367label separately.
368
Bram Moolenaar57657d82006-04-21 22:12:41 +0000369'guitabtooltip' is very similar and is used for the tooltip of the same label.
370This only appears when the mouse pointer hovers over the label, thus it
371usually is longer. Only supported on some systems though.
372
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000373See the 'statusline' option for the format of the value.
374
375The "%N" item can be used for the current tab page number. The |v:lnum|
Bram Moolenaar57657d82006-04-21 22:12:41 +0000376variable is also set to this number when the option is evaluated.
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000377The items that use a file name refer to the current window of the tab page.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000378
Bram Moolenaar57657d82006-04-21 22:12:41 +0000379Note that syntax highlighting is not used for the option. The %T and %X
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000380items are also ignored.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000381
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000382A simple example that puts the tab page number and the buffer name in the
383label: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000384 :set guitablabel=%N\ %f
385
Bram Moolenaar57657d82006-04-21 22:12:41 +0000386An example that resembles the default 'guitablabel': Show the number of
Bram Moolenaardd2a3cd2007-05-05 17:10:09 +0000387windows in the tab page and a '+' if there is a modified buffer: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000388
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000389 function GuiTabLabel()
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000390 let label = ''
391 let bufnrlist = tabpagebuflist(v:lnum)
392
393 " Add '+' if one of the buffers in the tab page is modified
394 for bufnr in bufnrlist
395 if getbufvar(bufnr, "&modified")
396 let label = '+'
397 break
398 endif
399 endfor
400
401 " Append the number of windows in the tab page if more than one
402 let wincount = tabpagewinnr(v:lnum, '$')
403 if wincount > 1
404 let label .= wincount
405 endif
406 if label != ''
407 let label .= ' '
408 endif
409
410 " Append the buffer name
411 return label . bufname(bufnrlist[tabpagewinnr(v:lnum) - 1])
412 endfunction
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000413
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000414 set guitablabel=%{GuiTabLabel()}
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000415
416Note that the function must be defined before setting the option, otherwise
417you get an error message for the function not being known.
418
Bram Moolenaard68071d2006-05-02 22:08:30 +0000419If you want to fall back to the default label, return an empty string.
420
421If you want to show something specific for a tab page, you might want to use a
422tab page local variable. |t:var|
423
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000424
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000425 vim:tw=78:ts=8:ft=help:norl: