diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-02-01 02:16:29 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-02-01 02:16:29 -0500 |
commit | 99067b7e56e0a873bcf333048ed0ba17280957be (patch) | |
tree | f0f7439aa98d0b71b262931c0fc4bc71a18667e7 /runtime/doc | |
parent | fe1ba0487aab98a131e6789b6916b1aec369e8fc (diff) | |
parent | a31f9161b09f3500385e99b076b3d8328de47dd7 (diff) | |
download | rneovim-99067b7e56e0a873bcf333048ed0ba17280957be.tar.gz rneovim-99067b7e56e0a873bcf333048ed0ba17280957be.tar.bz2 rneovim-99067b7e56e0a873bcf333048ed0ba17280957be.zip |
Merge pull request #4113 from jbradaric/vim-7.4.709
vim-patch:7.4.709
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/tabpage.txt | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/runtime/doc/tabpage.txt b/runtime/doc/tabpage.txt index 13944dc02a..59c4a28ff2 100644 --- a/runtime/doc/tabpage.txt +++ b/runtime/doc/tabpage.txt @@ -197,22 +197,29 @@ REORDERING TAB PAGES: Move the current tab page to after tab page N. Use zero to make the current tab page the first one. Without N the tab page is made the last one. > + :.tabmove " do nothing :-tabmove " move the tab page to the left - :tabmove " move the tab page to the right - :.tabmove " as above - :+tabmove " as above + :+tabmove " move the tab page to the right :0tabmove " move the tab page to the beginning of the tab " list - :$tabmove " move the tab page to the end of the tab list -< + :tabmove 0 " as above + :tabmove " move the tab page to the last + :$tabmove " as above + :tabmove $ " as above + :tabm[ove] +[N] :tabm[ove] -[N] Move the current tab page N places to the right (with +) or to - the left (with -). + the left (with -). > + :tabmove - " move the tab page to the left + :tabmove -1 " as above + :tabmove + " move the tab page to the right + :tabmove +1 " as above + Note that although it is possible to move a tab behind the N-th one by using -:Ntabmove, it is impossible to move it by N places by using :+Ntabmove. For -clarification what +N means in this context see |[range]|. +:Ntabmove. And move it by N places by using :+Ntabmove. For clarification what ++N means in this context see |[range]|. LOOPING OVER TAB PAGES: |