comparison runtime/doc/tabpage.txt @ 3662:e5b925ae56e3 v7.3.591

updated for version 7.3.591 Problem: Can only move to a tab by absolute number. Solution: Move a number of tabs to the left or the right. (Lech Lorens)
author Bram Moolenaar <bram@vim.org>
date Fri, 06 Jul 2012 18:27:39 +0200
parents 073ff46fe397
children 536aa8b0c934
comparison
equal deleted inserted replaced
3661:56726ac4c4b7 3662:e5b925ae56e3
171 171
172 172
173 REORDERING TAB PAGES: 173 REORDERING TAB PAGES:
174 174
175 :tabm[ove] [N] *:tabm* *:tabmove* 175 :tabm[ove] [N] *:tabm* *:tabmove*
176 :[N]tabm[ove]
176 Move the current tab page to after tab page N. Use zero to 177 Move the current tab page to after tab page N. Use zero to
177 make the current tab page the first one. Without N the tab 178 make the current tab page the first one. Without N the tab
178 page is made the last one. 179 page is made the last one.
180
181 :tabm[ove] +[N]
182 :tabm[ove] -[N]
183 Move the current tab page N places to the right (with +) or to
184 the left (with -).
185
186 Note that although it is possible to move a tab behind the N-th one by using
187 :Ntabmove, it is impossible to move it by N places by using :+Ntabmove. For
188 clarification what +N means in this context see |[range]|.
179 189
180 190
181 LOOPING OVER TAB PAGES: 191 LOOPING OVER TAB PAGES:
182 192
183 *:tabd* *:tabdo* 193 *:tabd* *:tabdo*