diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-24 23:53:04 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-24 23:53:04 +0000 |
commit | 32466aa2e9c45ab355dbaf99a9eedf334bc2e29f (patch) | |
tree | 1644d959a04f9f8c6ea5a8fe3c79f037c6915559 /runtime/doc/tabpage.txt | |
parent | 2a3f7eeebfa05a33cc1d8fbba66a3dff976e8dd7 (diff) | |
download | vim-32466aa2e9c45ab355dbaf99a9eedf334bc2e29f.zip |
updated for version 7.0206
Diffstat (limited to 'runtime/doc/tabpage.txt')
-rw-r--r-- | runtime/doc/tabpage.txt | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/runtime/doc/tabpage.txt b/runtime/doc/tabpage.txt index 5f394b398..7469869d8 100644 --- a/runtime/doc/tabpage.txt +++ b/runtime/doc/tabpage.txt @@ -1,4 +1,4 @@ -*tabpage.txt* For Vim version 7.0aa. Last change: 2006 Feb 23 +*tabpage.txt* For Vim version 7.0aa. Last change: 2006 Feb 24 VIM REFERENCE MANUAL by Bram Moolenaar @@ -132,6 +132,12 @@ gT Go to the previous tab page. Wraps around from the first one {count}gT Go {count} tab pages back. Wraps around from the first one to the last one. +:tabr[ewind] *:tabfir* *:tabfirst* *:tabr* *:tabrewind* +:tabl[ast] Go to the first tab page. + + *:tabl* *:tablast* +:tabl[ast] Go to the last tab page. + Other commands: *:tabs* @@ -147,6 +153,28 @@ REORDERING TAB PAGES: make the current tab page the first one. Without N the tab page is made the last one. + +LOOPING OVER TAB PAGES: + + *:tabd* *:tabdo* +:tabd[o] {cmd} Execute {cmd} in each tab page. + It works like doing this: > + :tabfirst + :{cmd} + :tabnext + :{cmd} + etc. +< This only operates in the current window of each tab page. + When an error is detected on one tab page, further tab pages + will not be visited. + The last tab page (or where an error occurred) becomes the + current tab page. + {cmd} can contain '|' to concatenate several commands. + {cmd} must not open or close tab pages or reorder them. + {not in Vi} {not available when compiled without the + |+listcmds| feature} + Also see |:windo|, |:argdo| and |:bufdo|. + ============================================================================== 3. Other items *tab-page-other* |