diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-31 14:59:19 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-31 14:59:19 +0200 |
commit | a26559b553079c3959ee142a010b2e000c180323 (patch) | |
tree | efa74d7172474004e81037173beedd6f1a983910 /runtime/doc/tabpage.txt | |
parent | 460fbaca72c042c53abe7bb13e916b8b3484caba (diff) | |
download | vim-git-a26559b553079c3959ee142a010b2e000c180323.tar.gz |
Support syntax and filetype completion for user commands. (Christian Brabandt)
Diffstat (limited to 'runtime/doc/tabpage.txt')
-rw-r--r-- | runtime/doc/tabpage.txt | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/runtime/doc/tabpage.txt b/runtime/doc/tabpage.txt index 238071471..ee27c4ace 100644 --- a/runtime/doc/tabpage.txt +++ b/runtime/doc/tabpage.txt @@ -1,4 +1,4 @@ -*tabpage.txt* For Vim version 7.3c. Last change: 2007 Mar 11 +*tabpage.txt* For Vim version 7.3c. Last change: 2010 Jul 31 VIM REFERENCE MANUAL by Bram Moolenaar @@ -58,17 +58,19 @@ clicking right of the labels. In the GUI tab pages line you can use the right mouse button to open menu. |tabline-menu|. -:tabe[dit] *:tabe* *:tabedit* *:tabnew* -:tabnew Open a new tab page with an empty window, after the current - tab page. +:[count]tabe[dit] *:tabe* *:tabedit* *:tabnew* +:[count]tabnew + Open a new tab page with an empty window, after the current + tab page. For [count] see |:tab| below. -:tabe[dit] [++opt] [+cmd] {file} -:tabnew [++opt] [+cmd] {file} +:[count]tabe[dit] [++opt] [+cmd] {file} +:[count]tabnew [++opt] [+cmd] {file} Open a new tab page and edit {file}, like with |:edit|. + For [count] see |:tab| below. -:tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind* +:[count]tabf[ind] [++opt] [+cmd] {file} *:tabf* *:tabfind* Open a new tab page and edit {file} in 'path', like with - |:find|. + |:find|. For [count] see |:tab| below. {not available when the |+file_in_path| feature was disabled at compile time} @@ -77,9 +79,11 @@ In the GUI tab pages line you can use the right mouse button to open menu. page instead. Doesn't work for |:diffsplit|, |:diffpatch|, |:execute| and |:normal|. When [count] is omitted the tab page appears after the current - one. When [count] is specified the new tab page comes after - tab page [count]. Use ":0tab cmd" to get the new tab page as - the first one. Examples: > + one. + When [count] is specified the new tab page comes after tab + page [count]. Use ":0tab cmd" to get the new tab page as the + first one. + Examples: > :tab split " opens current buffer in new tab page :tab help gt " opens tab page with help for "gt" |