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