blob: 87b42c0bbcbfba5c82e7ccf55b7e837a2e11f51f [file] [log] [blame]
Bram Moolenaar3991dab2006-03-27 17:01:56 +00001*tabpage.txt* For Vim version 7.0c. Last change: 2006 Mar 03
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 Moolenaare1438bb2006-03-01 22:01:55 +000049tab page (up to 'tabpagemax'). |-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
55In the GUI tab pages line you can use the right mouse button to open menu.
56|tabline-menu|.
Bram Moolenaar80a94a52006-02-23 21:26:58 +000057
58:tabe[dit] *:tabe* *:tabedit* *:tabnew*
59:tabnew Open a new tab page with an empty window, after the current
60 tab page.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000061
62:tabe[dit] [++opt] [+cmd] {file}
Bram Moolenaar80a94a52006-02-23 21:26:58 +000063:tabnew [++opt] [+cmd] {file}
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000064 Open a new tab page and edit {file}, like with |:edit|.
65
Bram Moolenaar2a0449d2006-02-20 21:27:21 +000066:tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000067 Open a new tab page and edit {file} in 'path', like with
68 |:find|.
69 {not available when the |+file_in_path| feature was disabled
70 at compile time}
71
Bram Moolenaar80a94a52006-02-23 21:26:58 +000072:[count]tab {cmd} *:tab*
73 Execute {cmd} and when it opens a new window open a new tab
74 page instead. Doesn't work for |:diffsplit| or |:diffpatch|.
75 When [count] is omitted the tab page appears after the current
76 one. When [count] is specified the new tab page comes after
77 tab page [count]. Use ":0tab cmd" to get the new tab page as
78 the first one. Examples: >
79 :tab split " opens current buffer in new tab page
80 :tab help gt " opens tab page with help for "gt"
81
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000082
83CLOSING A TAB PAGE:
84
Bram Moolenaar80a94a52006-02-23 21:26:58 +000085Closing the last window of a tab page closes the tab page too, unless there is
86only one tab page.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000087
88Using the mouse: If the tab page line is displayed you can click in the "X" at
Bram Moolenaar80a94a52006-02-23 21:26:58 +000089the top right to close the current tab page. A custom |'tabline'| may show
90something else.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000091
92 *:tabc* *:tabclose*
93:tabc[lose][!] Close current tab page.
94 This command fails when:
95 - There is only one tab page on the screen. *E784*
96 - When 'hidden' is not set, [!] is not used, a buffer has
97 changes, and there is no other window on this buffer.
98 Changes to the buffer are not written and won't get lost, so
99 this is a "safe" command.
100
101:tabc[lose][!] {count}
102 Close tab page {count}. Fails in the same way as ':tabclose"
103 above.
104
105 *:tabo* *:tabonly*
106:tabo[nly][!] Close all other tab pages.
107 When the 'hidden' option is set, all buffers in closed windows
108 become hidden.
109 When 'hidden' is not set, and the 'autowrite' option is set,
110 modified buffers are written. Otherwise, windows that have
111 buffers that are modified are not removed, unless the [!] is
112 given, then they become hidden. But modified buffers are
113 never abandoned, so changes cannot get lost.
114
115
116SWITCHING TO ANOTHER TAB PAGE:
117
118Using the mouse: If the tab page line is displayed you can click in a tab page
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000119label to switch to that tab page. Click where there is no label to go to the
120next tab page. |'tabline'|
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000121
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000122:tabn[ext] *:tabn* *:tabnext* *gt*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000123gt Go to the next tab page. Wraps around from the last to the
124 first one.
125
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000126:tabn[ext] {count}
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000127{count}gt Go to tab page {count}. The first tab page has number one.
128
129
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000130:tabp[revious] *:tabp* *:tabprevious* *gT*
131:tabN[ext] *:tabN* *:tabNext*
132gT Go to the previous tab page. Wraps around from the first one
133 to the last one.
134
135:tabp[revious] {count}
136:tabN[ext] {count}
137{count}gT Go {count} tab pages back. Wraps around from the first one
138 to the last one.
139
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000140:tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind*
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000141:tabfir[st] Go to the first tab page.
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000142
143 *:tabl* *:tablast*
144:tabl[ast] Go to the last tab page.
145
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000146
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000147Other commands:
148 *:tabs*
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000149:tabs List the tab pages and the windows they contain.
150 Shows a ">" for the current window.
151 Shows a "+" for modified buffers.
152
153
154REORDERING TAB PAGES:
155
156 *:tabm* *:tabmove*
157:tabmove N Move the current tab page to after tab page N. Use zero to
158 make the current tab page the first one. Without N the tab
159 page is made the last one.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000160
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000161
162LOOPING OVER TAB PAGES:
163
164 *:tabd* *:tabdo*
165:tabd[o] {cmd} Execute {cmd} in each tab page.
166 It works like doing this: >
167 :tabfirst
168 :{cmd}
169 :tabnext
170 :{cmd}
171 etc.
172< This only operates in the current window of each tab page.
173 When an error is detected on one tab page, further tab pages
174 will not be visited.
175 The last tab page (or where an error occurred) becomes the
176 current tab page.
177 {cmd} can contain '|' to concatenate several commands.
178 {cmd} must not open or close tab pages or reorder them.
179 {not in Vi} {not available when compiled without the
180 |+listcmds| feature}
181 Also see |:windo|, |:argdo| and |:bufdo|.
182
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000183==============================================================================
1843. Other items *tab-page-other*
185
Bram Moolenaarbfb2d402006-03-03 22:50:42 +0000186 *tabline-menu*
187The GUI tab pages line has a popup menu. It is accessed with a right click.
188The entries are:
189 Close Close the tab page under the mouse pointer. The
190 current one if there is no label under the mouse
191 pointer.
192 New Tab Open a tab page, editing an empty buffer. It appears
193 to the left of the mouse pointer.
194 Open Tab... Like "New Tab" and additionaly use a file selector to
195 select a file to edit.
196
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000197Diff mode works per tab page. You can see the diffs between several files
198within one tab page. Other tab pages can show differences between other
199files.
200
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000201The TabLeave and TabEnter autocommand events can be used to do something when
202switching from one tab page to another. The exact order depends on what you
203are doing. When creating a new tab page this works as if you create a new
204window on the same buffer and then edit another buffer. Thus ":tabnew"
205triggers:
206 WinLeave leave current window
207 TabLeave leave current tab page
208 TabEnter enter new tab page
209 WinEnter enter window in new tab page
210 BufLeave leave current buffer
211 BufEnter enter new empty buffer
212
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000213When switching to another tab page the order is:
Bram Moolenaar2a0449d2006-02-20 21:27:21 +0000214 BufLeave
215 WinLeave
216 TabLeave
217 TabEnter
218 WinEnter
219 BufEnter
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000220
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000221==============================================================================
2224. Setting 'tabline' *setting-tabline*
223
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000224The 'tabline' option specifies what the line with tab pages labels looks like.
225It is only used when there is no GUI tab line.
226
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000227You can use the 'showtabline' option to specify when you want the line with
228tab page labels to appear: never, when there is more than one tab page or
229always.
230
231The highlighting of the tab pages line is set with the groups TabLine
232TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill|
233
234The 'tabline' option allows you to define your preferred way to tab pages
235labels. This isn't easy, thus an example will be given here.
236
237For basics see the 'statusline' option. The same items can be used in the
238'tabline' option. Additionally, the |tabpagebuflist()|, |tabpagenr()| and
239|tabpagewinnr()| functions are useful.
240
241Since the number of tab labels will vary, you need to use an expresion for the
242whole option. Something like: >
243 :set tabline=%!MyTabLine()
244
245Then define the MyTabLine() function to list all the tab pages labels. A
246convenient method is to split it in two parts: First go over all the tab
247pages and define labels for them. Then get the label for each tab page. >
248
249 function MyTabLine()
250 let s = ''
251 for i in range(tabpagenr('$'))
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000252 " select the highlighting
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000253 if i + 1 == tabpagenr()
254 let s .= '%#TabLineSel#'
255 else
256 let s .= '%#TabLine#'
257 endif
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000258
259 " set the tab page number (for mouse clicks)
260 let s .= '%' . (i + 1) . 'T'
261
262 " the label is made by MyTabLabel()
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000263 let s .= ' %{MyTabLabel(' . (i + 1) . ')} '
264 endfor
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000265
266 " after the last tab fill with TabLineFill and reset tab page nr
267 let s .= '%#TabLineFill#%T'
268
269 " right-align the label to close the current tab page
270 if tabpagenr('$') > 1
271 let s .= '%=%#TabLine#%999Xclose'
272 endif
273
Bram Moolenaar030f0df2006-02-21 22:02:53 +0000274 return s
275 endfunction
276
277Now the MyTabLabel() function is called for each tab page to get its label. >
278
279 function MyTabLabel(n)
280 let buflist = tabpagebuflist(a:n)
281 let winnr = tabpagewinnr(a:n)
282 return bufname(buflist[winnr - 1])
283 endfunction
284
285This is just a simplistic example that results in a tab pages line that
286resembles the default, but without adding a + for a modified buffer or
287trunctating the names. You will want to reduce the width of labels in a
288clever way when there is not enough room. Check the 'columns' option for the
Bram Moolenaard1f56e62006-02-22 21:25:37 +0000289space available.
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000290
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000291==============================================================================
2925. Setting 'guitablabel' *setting-guitablabel*
293
294When the GUI tab pages line is displayed, 'guitablabel' can be used to
295specify the label to display for each tab page. Unlike 'tabline', which
296specifies the whole tab pages line at once, 'guitablabel' is used for each
297label separately.
298
299See the 'statusline' option for the format of the value.
300
301The "%N" item can be used for the current tab page number. The |v:lnum|
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000302variable is also set to this number when 'guitablabel' is evaluated.
303The items that use a file name refer to the current window of the tab page.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000304
305Note that syntax highlighting is not used for 'guitablabel'. The %T and %X
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000306items are also ignored.
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000307
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000308A simple example that puts the tab page number and the buffer name in the
309label: >
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000310 :set guitablabel=%N\ %f
311
312An example that resembles the default: Show the number of windows in the tab
313page and a '+' if there is a modifed buffer: >
314
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000315 function GuiTabLabel()
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000316 let label = ''
317 let bufnrlist = tabpagebuflist(v:lnum)
318
319 " Add '+' if one of the buffers in the tab page is modified
320 for bufnr in bufnrlist
321 if getbufvar(bufnr, "&modified")
322 let label = '+'
323 break
324 endif
325 endfor
326
327 " Append the number of windows in the tab page if more than one
328 let wincount = tabpagewinnr(v:lnum, '$')
329 if wincount > 1
330 let label .= wincount
331 endif
332 if label != ''
333 let label .= ' '
334 endif
335
336 " Append the buffer name
337 return label . bufname(bufnrlist[tabpagewinnr(v:lnum) - 1])
338 endfunction
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000339
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000340 set guitablabel=%{GuiTabLabel()}
Bram Moolenaara226a6d2006-02-26 23:59:20 +0000341
342Note that the function must be defined before setting the option, otherwise
343you get an error message for the function not being known.
344
Bram Moolenaarba6c0522006-02-25 21:45:02 +0000345
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000346 vim:tw=78:ts=8:ft=help:norl: