Is there a vim command to relocate a tab?

VimTabs

Vim Problem Overview


How can I change the position / order of my current tab in Vim? For example, if I want to reposition my current tab to be the first tab?

Vim Solutions


Solution 1 - Vim

You can relocate a tab with :tabm using either relative or zero-index absolute arguments.

absolute:

  • Move tab to position i: :tabm i

relative:

  • Move tab i positions to the right: :tabm +i
  • Move tab i positions to the left: :tabm -i

It's a relatively new feature. So if it doesn't work try updating your vim.

Solution 2 - Vim

Do you mean moving the current tab? This works using tabmove.

:tabm[ove] [N]                                          *:tabm* *:tabmove*
            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.

I have two key bindings that move my current tab one left or one right. Very handy!

EDIT: Here is my VIM macro. I'm not a big ViM coder, so maybe it could be done better, but that's how it works for me:

" Move current tab into the specified direction.
"
" @param direction -1 for left, 1 for right.
function! TabMove(direction)
	" get number of tab pages.
	let ntp=tabpagenr("$")
	" move tab, if necessary.
	if ntp > 1
        " get number of current tab page.
        let ctpn=tabpagenr()
        " move left.
        if a:direction < 0
			let index=((ctpn-1+ntp-1)%ntp)
		else
			let index=(ctpn%ntp)
		endif

		" move tab page.
		execute "tabmove ".index
	endif
endfunction

After this you can bind keys, for example like this in your .vimrc:

map <F9> :call TabMove(-1)<CR>
map <F10> :call TabMove(1)<CR>

Now you can move your current tab by pressing F9 or F10.

Solution 3 - Vim

I was looking for the same and after some posts I found a simpler way than a function:

:execute "tabmove" tabpagenr() # Move the tab to the right
:execute "tabmove" tabpagenr() - 2 # Move the tab to the left

The tabpagenr() returns the actual tab position, and tabmove uses indexes.

I mapped the right to Ctrl+L and the left to Ctrl+H:

map <C-H> :execute "tabmove" tabpagenr() - 2 <CR>
map <C-J> :execute "tabmove" tabpagenr() <CR>

Solution 4 - Vim

Move Current Tab to the nth Position

:tabm n

Where n is a number denoting the position (starting from zero)


Move Tabs to the Left / Right

I think a better solution is to move the tab to the left or right to its current position instead of figuring out the numerical value of the new position you want it at.

noremap <A-Left>  :-tabmove<cr>
noremap <A-Right> :+tabmove<cr>

With the above keymaps, you'll be able to move the current tab:

  • To the left using: Alt + Left
  • To the right using: Alt + Right

Solution 5 - Vim

In addition to the fine suggestions in other answers, you can also simply drag tabs with the mouse to move them, if you have mouse support enabled.

This is on by default in MacVim and other GUI vim implementations, whether using the GUI widget tabs or the terminal style tabs in GUI mode.

It also works in pure tty mode Vim, if you have set mouse=a and have a suitable terminal (xterm and most emulators of it, such as gnome-terminal, Terminal.app, iTerm2, and PuTTY/KiTTY, to name a view). Note that mouse clicks beyond column 222 also require set ttymouse=sgr; see https://stackoverflow.com/questions/7000960/vim-mouse-problem for background on that.

I've written a plugin called vim-tabber that provides some additional functionality for swapping tabs around, shifting them, and adding to the capabilities of the built-in tab manipulation commands, while remaining largely compatible with the builtins. Even if you choose not to use the plugin, there's some general tab usage information in the README.

Solution 6 - Vim

This is a great question, Gavin, because there is a subtlety to it.

The answers from maybeshewill and hochl mostly answer the question -- use ":tabm" with an index or a relative (+/-) index.

Note, though, that there is the potential for confusion here and some of the other answers might have missed this. Take a look at the help text below that was included by hochl:

   :tabm[ove] [N]                                          *:tabm* *:tabmove*
            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.

The key word is after. I suspect this confuses people at times. Why? Because if a tab is moved out of the first position using ":tabm3", subsequently typing ":tabm2" does not move the tab again. The file that occupied tab#3 now occupies tab#2 and ":tabm2" does not change the order.

Here's a diagram. The selected tab is [file_c] in each row.

file_a file_b [file_c] file_d
:tabm0
[file_c] file_a file_b file_d
:tabm3
file_a file_b [file_c] file_d
:tabm2
file_a file_b [file_c] file_d

The ":tabm" command can be thought of as moving the current tab to after the tab that currently occupies a position when counting from 0, where tab 0 is the left-most tab and is imaginary. ":tabmi" does not move to the ith position -- if it did, ":tabm3" and ":tabm2" would produce different results.

In the end, the relative move +/- syntax is simpler if you have a good keymap.

Solution 7 - Vim

For some reason, the function answer stopped working for me. I suspect a conflict with vim-ctrlspace. Regardless, the math in the function answer is unnecessary, as Vim can move tabs left and right with built in functions. We just have to handle the wrapping case, because Vim is not user friendly.

" Move current tab into the specified direction.
"
" @param direction -1 for left, 1 for right.
function! TabMove(direction)
    let s:current_tab=tabpagenr()
    let s:total_tabs = tabpagenr("$")

    " Wrap to end
    if s:current_tab == 1 && a:direction == -1
        tabmove
    " Wrap to start
    elseif s:current_tab == s:total_tabs && a:direction == 1
        tabmove 0
    " Normal move
    else
        execute (a:direction > 0 ? "+" : "-") . "tabmove"
    endif
    echo "Moved to tab " . tabpagenr() . " (previosuly " . s:current_tab . ")"
endfunction

" Move tab left or right using Command-Shift-H or L
map <D-H> :call TabMove(-1)<CR>
map <D-L> :call TabMove(1)<CR>

Solution 8 - Vim

Here's my macro, using relative arguments from @maybeshewill's answer:

" Shortcuts to move between tabs with Ctrl+Shift+Left/Right
function TabLeft()
   if tabpagenr() == 1
      execute "tabm"
   else
      execute "tabm -1"
   endif
endfunction

function TabRight()
   if tabpagenr() == tabpagenr('$')
      execute "tabm" 0
   else
      execute "tabm +1"
   endif
endfunction

map <silent><C-S-Right> :execute TabRight()<CR>
map <silent><C-S-Left> :execute TabLeft()<CR>

It handles the wrapping case.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGavinView Question on Stackoverflow
Solution 1 - VimmaybeshewillView Answer on Stackoverflow
Solution 2 - VimhochlView Answer on Stackoverflow
Solution 3 - VimPablo Díaz OgniView Answer on Stackoverflow
Solution 4 - VimSheharyarView Answer on Stackoverflow
Solution 5 - VimJim StewartView Answer on Stackoverflow
Solution 6 - VimAndrew RichardsonView Answer on Stackoverflow
Solution 7 - VimAndy RayView Answer on Stackoverflow
Solution 8 - VimJérômeView Answer on Stackoverflow