Bram Moolenaar | a162bc5 | 2015-01-07 16:54:21 +0100 | [diff] [blame] | 1 | *tabpage.txt* For Vim version 7.4. Last change: 2015 Jan 04 |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
| 5 | |
| 6 | |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 7 | Editing with windows in multiple tab pages. *tab-page* *tabpage* |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 8 | |
| 9 | The commands which have been added to use multiple tab pages are explained |
| 10 | here. Additionally, there are explanations for commands that work differently |
| 11 | when used in combination with more than one tab page. |
| 12 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 13 | 1. Introduction |tab-page-intro| |
| 14 | 2. Commands |tab-page-commands| |
| 15 | 3. Other items |tab-page-other| |
| 16 | 4. Setting 'tabline' |setting-tabline| |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 17 | 5. Setting 'guitablabel' |setting-guitablabel| |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 18 | |
| 19 | {Vi does not have any of these commands} |
| 20 | {not able to use multiple tab pages when the |+windows| feature was disabled |
| 21 | at compile time} |
| 22 | |
| 23 | ============================================================================== |
| 24 | 1. Introduction *tab-page-intro* |
| 25 | |
| 26 | A tab page holds one or more windows. You can easily switch between tab |
| 27 | pages, so that you have several collections of windows to work on different |
| 28 | things. |
| 29 | |
| 30 | Usually you will see a list of labels at the top of the Vim window, one for |
| 31 | each tab page. With the mouse you can click on the label to jump to that tab |
| 32 | page. There are other ways to move between tab pages, see below. |
| 33 | |
| 34 | Most commands work only in the current tab page. That includes the |CTRL-W| |
Bram Moolenaar | e1438bb | 2006-03-01 22:01:55 +0000 | [diff] [blame] | 35 | commands, |:windo|, |:all| and |:ball| (when not using the |:tab| modifier). |
| 36 | The commands that are aware of other tab pages than the current one are |
| 37 | mentioned below. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 38 | |
| 39 | Tabs are also a nice way to edit a buffer temporarily without changing the |
| 40 | current window layout. Open a new tab page, do whatever you want to do and |
| 41 | close the tab page. |
| 42 | |
| 43 | ============================================================================== |
| 44 | 2. Commands *tab-page-commands* |
| 45 | |
| 46 | OPENING A NEW TAB PAGE: |
| 47 | |
| 48 | When starting Vim "vim -p filename ..." opens each file argument in a separate |
Bram Moolenaar | 58f0a1f | 2010-07-17 16:30:42 +0200 | [diff] [blame] | 49 | tab page (up to 'tabpagemax'). See |-p| |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 50 | |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 51 | A double click with the mouse in the non-GUI tab pages line opens a new, empty |
| 52 | tab page. It is placed left of the position of the click. The first click |
| 53 | may select another tab page first, causing an extra screen update. |
| 54 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 55 | This also works in a few GUI versions, esp. Win32 and Motif. But only when |
| 56 | clicking right of the labels. |
| 57 | |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 58 | In the GUI tab pages line you can use the right mouse button to open menu. |
| 59 | |tabline-menu|. |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 60 | |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 61 | :[count]tabe[dit] *:tabe* *:tabedit* *:tabnew* |
| 62 | :[count]tabnew |
| 63 | Open a new tab page with an empty window, after the current |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 64 | 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 Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 74 | |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 75 | :[count]tabe[dit] [++opt] [+cmd] {file} |
| 76 | :[count]tabnew [++opt] [+cmd] {file} |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 77 | Open a new tab page and edit {file}, like with |:edit|. |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 78 | For [count] see |:tabnew| above. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 79 | |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 80 | :[count]tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind* |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 81 | Open a new tab page and edit {file} in 'path', like with |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 82 | |:find|. For [count] see |:tabnew| above. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 83 | {not available when the |+file_in_path| feature was disabled |
| 84 | at compile time} |
| 85 | |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 86 | :[count]tab {cmd} *:tab* |
| 87 | Execute {cmd} and when it opens a new window open a new tab |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 88 | page instead. Doesn't work for |:diffsplit|, |:diffpatch|, |
| 89 | |:execute| and |:normal|. |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 90 | When [count] is omitted the tab page appears after the current |
Bram Moolenaar | a26559b | 2010-07-31 14:59:19 +0200 | [diff] [blame] | 91 | 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 Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 96 | :tab split " opens current buffer in new tab page |
| 97 | :tab help gt " opens tab page with help for "gt" |
| 98 | |
Bram Moolenaar | 8dff818 | 2006-04-06 20:18:50 +0000 | [diff] [blame] | 99 | CTRL-W gf Open a new tab page and edit the file name under the cursor. |
| 100 | See |CTRL-W_gf|. |
| 101 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 102 | CTRL-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 Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 105 | |
| 106 | CLOSING A TAB PAGE: |
| 107 | |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 108 | Closing the last window of a tab page closes the tab page too, unless there is |
| 109 | only one tab page. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 110 | |
| 111 | Using the mouse: If the tab page line is displayed you can click in the "X" at |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 112 | the top right to close the current tab page. A custom |'tabline'| may show |
| 113 | something else. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 114 | |
| 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 Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 122 | this is a "safe" command. > |
| 123 | :tabclose " close the current tab page |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 124 | |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 125 | :{count}tabc[lose][!] |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 126 | :tabc[lose][!] {count} |
Bram Moolenaar | 9b45125 | 2012-08-15 17:43:31 +0200 | [diff] [blame] | 127 | Close tab page {count}. Fails in the same way as `:tabclose` |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 128 | 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 Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 134 | *: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 Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 142 | 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 Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 153 | |
| 154 | |
| 155 | SWITCHING TO ANOTHER TAB PAGE: |
| 156 | |
| 157 | Using the mouse: If the tab page line is displayed you can click in a tab page |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 158 | label to switch to that tab page. Click where there is no label to go to the |
| 159 | next tab page. |'tabline'| |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 160 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 161 | :tabn[ext] *:tabn* *:tabnext* *gt* |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 162 | <C-PageDown> *CTRL-<PageDown>* *<C-PageDown>* |
| 163 | gt *i_CTRL-<PageDown>* *i_<C-PageDown>* |
Bram Moolenaar | 7fc904b | 2006-04-13 20:37:35 +0000 | [diff] [blame] | 164 | Go to the next tab page. Wraps around from the last to the |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 165 | first one. |
| 166 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 167 | :tabn[ext] {count} |
| 168 | {count}<C-PageDown> |
| 169 | {count}gt Go to tab page {count}. The first tab page has number one. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 170 | |
| 171 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 172 | :tabp[revious] *:tabp* *:tabprevious* *gT* *:tabN* |
| 173 | :tabN[ext] *:tabNext* *CTRL-<PageUp>* |
| 174 | <C-PageUp> *<C-PageUp>* *i_CTRL-<PageUp>* *i_<C-PageUp>* |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 175 | gT 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 Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 180 | {count}<C-PageUp> |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 181 | {count}gT Go {count} tab pages back. Wraps around from the first one |
| 182 | to the last one. |
| 183 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 184 | :tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind* |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 185 | :tabfir[st] Go to the first tab page. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 186 | |
| 187 | *:tabl* *:tablast* |
| 188 | :tabl[ast] Go to the last tab page. |
| 189 | |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 190 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 191 | Other commands: |
| 192 | *:tabs* |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 193 | :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 | |
| 198 | REORDERING TAB PAGES: |
| 199 | |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 200 | :tabm[ove] [N] *:tabm* *:tabmove* |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 201 | :[N]tabm[ove] |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 202 | Move the current tab page to after tab page N. Use zero to |
Bram Moolenaar | 80a94a5 | 2006-02-23 21:26:58 +0000 | [diff] [blame] | 203 | make the current tab page the first one. Without N the tab |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 204 | page is made the last one. > |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 205 | :.tabmove " do nothing |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 206 | :-tabmove " move the tab page to the left |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 207 | :+tabmove " move the tab page to the right |
Bram Moolenaar | a162bc5 | 2015-01-07 16:54:21 +0100 | [diff] [blame] | 208 | :0tabmove " move the tab page to the beginning of the tab |
Bram Moolenaar | b96a7f3 | 2014-11-27 16:22:48 +0100 | [diff] [blame] | 209 | " list |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 210 | :tabmove 0 " as above |
| 211 | :tabmove " move the tab page to the last |
| 212 | :$tabmove " as above |
| 213 | :tabmove $ " as above |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 214 | |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 215 | :tabm[ove] +[N] |
| 216 | :tabm[ove] -[N] |
| 217 | Move the current tab page N places to the right (with +) or to |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 218 | the left (with -). > |
| 219 | :tabmove - " move the tab page to the left |
| 220 | :tabmove -1 " as above |
| 221 | :tabmove + " move the tab page to the right |
| 222 | :tabmove +1 " as above |
| 223 | |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 224 | |
| 225 | Note that although it is possible to move a tab behind the N-th one by using |
Bram Moolenaar | 40ce3a4 | 2015-04-21 18:08:39 +0200 | [diff] [blame] | 226 | :Ntabmove. And move it by N places by using :+Ntabmove. For clarification what |
| 227 | +N means in this context see |[range]|. |
Bram Moolenaar | 8cb8dca | 2012-07-06 18:27:39 +0200 | [diff] [blame] | 228 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 229 | |
| 230 | LOOPING OVER TAB PAGES: |
| 231 | |
| 232 | *:tabd* *:tabdo* |
Bram Moolenaar | a162bc5 | 2015-01-07 16:54:21 +0100 | [diff] [blame] | 233 | :[range]tabd[o] {cmd} |
| 234 | Execute {cmd} in each tab page or if [range] is given only in |
| 235 | tab pages which tab page number is in the [range]. It works |
| 236 | like doing this: > |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 237 | :tabfirst |
| 238 | :{cmd} |
| 239 | :tabnext |
| 240 | :{cmd} |
| 241 | etc. |
| 242 | < This only operates in the current window of each tab page. |
| 243 | When an error is detected on one tab page, further tab pages |
| 244 | will not be visited. |
| 245 | The last tab page (or where an error occurred) becomes the |
| 246 | current tab page. |
| 247 | {cmd} can contain '|' to concatenate several commands. |
| 248 | {cmd} must not open or close tab pages or reorder them. |
| 249 | {not in Vi} {not available when compiled without the |
| 250 | |+listcmds| feature} |
| 251 | Also see |:windo|, |:argdo| and |:bufdo|. |
| 252 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 253 | ============================================================================== |
| 254 | 3. Other items *tab-page-other* |
| 255 | |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 256 | *tabline-menu* |
| 257 | The GUI tab pages line has a popup menu. It is accessed with a right click. |
| 258 | The entries are: |
| 259 | Close Close the tab page under the mouse pointer. The |
| 260 | current one if there is no label under the mouse |
| 261 | pointer. |
| 262 | New Tab Open a tab page, editing an empty buffer. It appears |
| 263 | to the left of the mouse pointer. |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 264 | Open Tab... Like "New Tab" and additionally use a file selector to |
Bram Moolenaar | bfb2d40 | 2006-03-03 22:50:42 +0000 | [diff] [blame] | 265 | select a file to edit. |
| 266 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 267 | Diff mode works per tab page. You can see the diffs between several files |
| 268 | within one tab page. Other tab pages can show differences between other |
| 269 | files. |
| 270 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 271 | Variables local to a tab page start with "t:". |tabpage-variable| |
| 272 | |
Bram Moolenaar | c6fe919 | 2006-04-09 21:54:49 +0000 | [diff] [blame] | 273 | Currently there is only one option local to a tab page: 'cmdheight'. |
| 274 | |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 275 | The TabLeave and TabEnter autocommand events can be used to do something when |
| 276 | switching from one tab page to another. The exact order depends on what you |
| 277 | are doing. When creating a new tab page this works as if you create a new |
| 278 | window on the same buffer and then edit another buffer. Thus ":tabnew" |
| 279 | triggers: |
| 280 | WinLeave leave current window |
| 281 | TabLeave leave current tab page |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 282 | WinEnter enter window in new tab page |
Bram Moolenaar | a162bc5 | 2015-01-07 16:54:21 +0100 | [diff] [blame] | 283 | TabEnter enter new tab page |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 284 | BufLeave leave current buffer |
| 285 | BufEnter enter new empty buffer |
| 286 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 287 | When switching to another tab page the order is: |
Bram Moolenaar | 2a0449d | 2006-02-20 21:27:21 +0000 | [diff] [blame] | 288 | BufLeave |
| 289 | WinLeave |
| 290 | TabLeave |
| 291 | TabEnter |
| 292 | WinEnter |
| 293 | BufEnter |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 294 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 295 | ============================================================================== |
| 296 | 4. Setting 'tabline' *setting-tabline* |
| 297 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 298 | The 'tabline' option specifies what the line with tab pages labels looks like. |
| 299 | It is only used when there is no GUI tab line. |
| 300 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 301 | You can use the 'showtabline' option to specify when you want the line with |
| 302 | tab page labels to appear: never, when there is more than one tab page or |
| 303 | always. |
| 304 | |
| 305 | The highlighting of the tab pages line is set with the groups TabLine |
| 306 | TabLineSel and TabLineFill. |hl-TabLine| |hl-TabLineSel| |hl-TabLineFill| |
| 307 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 308 | A "+" will be shown for a tab page that has a modified window. The number of |
| 309 | windows in a tabpage is also shown. Thus "3+" means three windows and one of |
| 310 | them has a modified buffer. |
| 311 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 312 | The 'tabline' option allows you to define your preferred way to tab pages |
| 313 | labels. This isn't easy, thus an example will be given here. |
| 314 | |
| 315 | For basics see the 'statusline' option. The same items can be used in the |
| 316 | 'tabline' option. Additionally, the |tabpagebuflist()|, |tabpagenr()| and |
| 317 | |tabpagewinnr()| functions are useful. |
| 318 | |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 319 | Since the number of tab labels will vary, you need to use an expression for |
| 320 | the whole option. Something like: > |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 321 | :set tabline=%!MyTabLine() |
| 322 | |
| 323 | Then define the MyTabLine() function to list all the tab pages labels. A |
| 324 | convenient method is to split it in two parts: First go over all the tab |
| 325 | pages and define labels for them. Then get the label for each tab page. > |
| 326 | |
| 327 | function MyTabLine() |
| 328 | let s = '' |
| 329 | for i in range(tabpagenr('$')) |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 330 | " select the highlighting |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 331 | if i + 1 == tabpagenr() |
| 332 | let s .= '%#TabLineSel#' |
| 333 | else |
| 334 | let s .= '%#TabLine#' |
| 335 | endif |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 336 | |
| 337 | " set the tab page number (for mouse clicks) |
| 338 | let s .= '%' . (i + 1) . 'T' |
| 339 | |
| 340 | " the label is made by MyTabLabel() |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 341 | let s .= ' %{MyTabLabel(' . (i + 1) . ')} ' |
| 342 | endfor |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 343 | |
| 344 | " after the last tab fill with TabLineFill and reset tab page nr |
| 345 | let s .= '%#TabLineFill#%T' |
| 346 | |
| 347 | " right-align the label to close the current tab page |
| 348 | if tabpagenr('$') > 1 |
| 349 | let s .= '%=%#TabLine#%999Xclose' |
| 350 | endif |
| 351 | |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 352 | return s |
| 353 | endfunction |
| 354 | |
| 355 | Now the MyTabLabel() function is called for each tab page to get its label. > |
| 356 | |
| 357 | function MyTabLabel(n) |
| 358 | let buflist = tabpagebuflist(a:n) |
| 359 | let winnr = tabpagewinnr(a:n) |
| 360 | return bufname(buflist[winnr - 1]) |
| 361 | endfunction |
| 362 | |
| 363 | This is just a simplistic example that results in a tab pages line that |
| 364 | resembles the default, but without adding a + for a modified buffer or |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 365 | truncating the names. You will want to reduce the width of labels in a |
Bram Moolenaar | 030f0df | 2006-02-21 22:02:53 +0000 | [diff] [blame] | 366 | clever way when there is not enough room. Check the 'columns' option for the |
Bram Moolenaar | d1f56e6 | 2006-02-22 21:25:37 +0000 | [diff] [blame] | 367 | space available. |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 368 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 369 | ============================================================================== |
| 370 | 5. Setting 'guitablabel' *setting-guitablabel* |
| 371 | |
| 372 | When the GUI tab pages line is displayed, 'guitablabel' can be used to |
| 373 | specify the label to display for each tab page. Unlike 'tabline', which |
| 374 | specifies the whole tab pages line at once, 'guitablabel' is used for each |
| 375 | label separately. |
| 376 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 377 | 'guitabtooltip' is very similar and is used for the tooltip of the same label. |
| 378 | This only appears when the mouse pointer hovers over the label, thus it |
| 379 | usually is longer. Only supported on some systems though. |
| 380 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 381 | See the 'statusline' option for the format of the value. |
| 382 | |
| 383 | The "%N" item can be used for the current tab page number. The |v:lnum| |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 384 | variable is also set to this number when the option is evaluated. |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 385 | The items that use a file name refer to the current window of the tab page. |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 386 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 387 | Note that syntax highlighting is not used for the option. The %T and %X |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 388 | items are also ignored. |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 389 | |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 390 | A simple example that puts the tab page number and the buffer name in the |
| 391 | label: > |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 392 | :set guitablabel=%N\ %f |
| 393 | |
Bram Moolenaar | 57657d8 | 2006-04-21 22:12:41 +0000 | [diff] [blame] | 394 | An example that resembles the default 'guitablabel': Show the number of |
Bram Moolenaar | dd2a3cd | 2007-05-05 17:10:09 +0000 | [diff] [blame] | 395 | windows in the tab page and a '+' if there is a modified buffer: > |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 396 | |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 397 | function GuiTabLabel() |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 398 | let label = '' |
| 399 | let bufnrlist = tabpagebuflist(v:lnum) |
| 400 | |
| 401 | " Add '+' if one of the buffers in the tab page is modified |
| 402 | for bufnr in bufnrlist |
| 403 | if getbufvar(bufnr, "&modified") |
| 404 | let label = '+' |
| 405 | break |
| 406 | endif |
| 407 | endfor |
| 408 | |
| 409 | " Append the number of windows in the tab page if more than one |
| 410 | let wincount = tabpagewinnr(v:lnum, '$') |
| 411 | if wincount > 1 |
| 412 | let label .= wincount |
| 413 | endif |
| 414 | if label != '' |
| 415 | let label .= ' ' |
| 416 | endif |
| 417 | |
| 418 | " Append the buffer name |
| 419 | return label . bufname(bufnrlist[tabpagewinnr(v:lnum) - 1]) |
| 420 | endfunction |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 421 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 422 | set guitablabel=%{GuiTabLabel()} |
Bram Moolenaar | a226a6d | 2006-02-26 23:59:20 +0000 | [diff] [blame] | 423 | |
| 424 | Note that the function must be defined before setting the option, otherwise |
| 425 | you get an error message for the function not being known. |
| 426 | |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 427 | If you want to fall back to the default label, return an empty string. |
| 428 | |
| 429 | If you want to show something specific for a tab page, you might want to use a |
| 430 | tab page local variable. |t:var| |
| 431 | |
Bram Moolenaar | ba6c052 | 2006-02-25 21:45:02 +0000 | [diff] [blame] | 432 | |
Bram Moolenaar | 7e8fd63 | 2006-02-18 22:14:51 +0000 | [diff] [blame] | 433 | vim:tw=78:ts=8:ft=help:norl: |