vimtricks.wiki Concise Vim tricks, one at a time.

How do you rearrange tab order in Vim?

Answer

:tabmove 0

Explanation

Use :tabmove N to move the current tab after tab N. :tabmove 0 moves it to the first position. :tabmove alone moves it to the end.

Next

How do I visually select a double-quoted string including the quotes themselves?