Quickly switching buffers in Vim normal mode

Vim

Vim Problem Overview


Recently I found out that I'm "using tabs incorrectly" in Vim. I've been trying to just use buffers in Vim since, assisted through MiniBufExplorer, but I find it painful because of how many keystrokes it takes to change buffers from normal mode. With tabs, I can just do gt or gT to hop back and forth between tabs in normal mode, and I can also do NUMBERgt to go to a specific tab.

With buffers, I either have to enter command mode with :bn, :bp, or with MiniBufExplorer, use Ctrl + k or Ctrl + Up to hop up to the buffer window, scroll left or right with h and l and then hit Enter to select the buffer I want. Or I can do something involving a leader sequence, but it always requires removing multiple fingers away from home row. That's a real pain.

How can I get something equivalent switching tabs in normal mode to switch buffers in normal mode, so I can do something like gn/gp for :bn/:bp and NUMBERgn for :buf NUMBER?

Vim Solutions


Solution 1 - Vim

Add this to your .vimrc

map gn :bn<cr>
map gp :bp<cr>
map gd :bd<cr>  

Note that you are remapping gp and gd, but maybe you don't care about that (:help gp, :help gd).

For more information on how to map key strokes see :help map-overview and :help map.txt.

Btw, I personally use <leader> instead of g in the mapping. My <leader> is set to ;. This puts my <leader> key on the home row which makes me willing to map all kinds of stuff using <leader>. :help mapleader if you want to change your <leader> key.

Solution 2 - Vim

The way I usually switch between buffers is to use the :buffer command with the built-in autocompletion, e.g. :b prof<Tab> to switch to folder/path/LoginProfileFactory.php.

You can just start typing any part of the file name of the buffer you need, which is nice.

Less often, I actually remember the numbers of the buffers I want and I use something like :b 3 or :3b. I see you mention you don't like :buf 3 though, so Rumple Stiltskin has an alternative to the :3b style that you may prefer.

Solution 3 - Vim

{count}CTRL-^ switches to the count numbered buffer.

Solution 4 - Vim

I have the following lines in .vimrc:

nnoremap  <silent>   <tab>  :if &modifiable && !&readonly && &modified <CR> :write<CR> :endif<CR>:bnext<CR>
nnoremap  <silent> <s-tab>  :if &modifiable && !&readonly && &modified <CR> :write<CR> :endif<CR>:bprevious<CR>

Now a Tab let you go to the next buffer and a Shift-Tab to the previous.

Solution 5 - Vim

This is based on Nick Knowlson's answer, but I wanted to expand on my comment there ...

> Type :b <Tab> (note the space), then cycle through the open buffers with Tab or / .

... which gets us closer to the Ctrl + Tab in all the other editors and browsers I use.

It's actually even better in some ways, you can then go backwards and forwards with / arrows. It avoids the thumb + finger fu to type Ctrl + Shift + Tab to go backwards through the tabs in editors and browsers.

N.B. Shift + Tab just does the same as Tab

This is then actually something like Win + Tab in Windows 10, where once you first open up the window and you can then move around using the arrow keys.

Edit: I have two further tricks that I picked up for using buffers:

  1. From this answer I have this in my .vimrc:

     nnoremap <leader>bb :buffers<cr>:b<space> 
    

    it opens the :ls / :buffers command and pre-types the :b so that you just have to type the buffer number as you'll see a list with all the buffers and their numbers.

  2. I also have

     nnoremap <leader><tab> :b#<cr>
    

    which toggles between the current and most recently used buffers, it's a bit like doing cd - when switching back and forth between directories

Solution 6 - Vim

I use the plugin unimpaired.vim

it defines mappings [b and ]b that jump to the previous and next buffer in the list.

For jumping for a specific buffer the best option I know is the one you mentioned: :b<number>

If you go into another buffer you can came back quickly by typing <c-^>

Solution 7 - Vim

I use LustyExplorer: I hit <leader>b to open a list of buffers then a couple of letters from the name of the buffer I want to open then enter. Easy.

But, you are not "using tabs incorrectly", you are using tabs the way you want. If it worked for you why go through the pain of unlearning your way to learn "the right way"?

Solution 8 - Vim

Expanding on Rumple Stiltskin's answer, if you know that the file you want to get to is in buffer 4, for example, you can get there quickly with

4Ctrl-^

On my UK keyboard, I can actually do 4Ctrl-6, as explained in

:help CTRL-^

By the way, you can see the buffer numbers with

:buffers

or

:ls

Solution 9 - Vim

I use F9 and F10 to move between the previous/next buffer with this mapping:

map <F9> :bprevious<CR>
map <F10> :bnext<CR>

For me this is the fastest way to switch buffers.

Solution 10 - Vim

fzf.vim is another fast way to changes buffers using fuzzy matching. This plug-in ships with the default command:

:Buffers

which opens the list of all open buffers similar to :ls but a buffer can be (fuzzy) searched and selected. Opening the buffer in the current window is through enter, but can can also be opened in a new split (h or v) or tab using ^X ^V or ^T respectively.

Noteworthy is also:

:Lines

Which allows to search through the content of all open buffers. This can be handy if you forget the name of a buffer but you know what it should contain.

Solution 11 - Vim

I make it easier for myself: In .vimrc :

nnoremap <leader>bf :buffers<CR>:buffer "<- Last spaces is necessary

For example, in normal mode, say your leader key is \(default it is), type \bf, then you have a list of opened buffers, type number of buffer you want and hit enter key. NOTE: remember that last spaces not necessary at all if you wich type it after :D

Jut like that ;)

switching buffers in vim with above nnoremap

More detail:

<C-O> Navigate backward

<C-I> Navigate forward

So there is no need extra remapping, otherwise you remapped them.

Solution 12 - Vim

Here is my solution:

" `<leader><Tab>` - next buffer;
nnoremap  <silent> <leader><Tab>    :bnext<CR> 

" `<leader><S-Tab>` - previous buffer;
nnoremap  <silent> <leader><S-Tab>  :bprevious<CR>

" `_bufferNumber_ + <Tab>` - go exact the buffer number;
nnoremap  <silent> <Tab>            <C-^>

By the way, I use 'buftabline' plugin and set let g:buftabline_numbers = 1 to spread my buffer on the tabline.

buftabline

Solution 13 - Vim

I think bufexplorer is a nice plugin to use. <leader>be brings up an interactive buffer explorer that lists all open buffers. You could quickly move through the list and Enter puts you in the selected buffer. Unlike LustyExplorer It has no dependency to ruby.

Solution 14 - Vim

I prefer navigating between buffers similarly to how I'm navigating between window panes: <alt-h> and <alt-l>. This is to straightforward to set on Mac because <alt>/<option> key binds are bounded to specific characters.

" Buffer navigation
map ˙ :bp<cr>
map ¬ :bn<cr>
map § <c-^>

Here is a good answer that shows how you can see characters maped to <alt-..> combinations

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
QuestiongotgenesView Question on Stackoverflow
Solution 1 - VimEric JohnsonView Answer on Stackoverflow
Solution 2 - VimNick KnowlsonView Answer on Stackoverflow
Solution 3 - VimRumple StiltskinView Answer on Stackoverflow
Solution 4 - VimFritz G. MehnerView Answer on Stackoverflow
Solution 5 - Vimicc97View Answer on Stackoverflow
Solution 6 - VimskeeptView Answer on Stackoverflow
Solution 7 - VimromainlView Answer on Stackoverflow
Solution 8 - VimRobertView Answer on Stackoverflow
Solution 9 - VimmvidovicView Answer on Stackoverflow
Solution 10 - VimSebastian MüllerView Answer on Stackoverflow
Solution 11 - VimMamrezoView Answer on Stackoverflow
Solution 12 - VimSheldonView Answer on Stackoverflow
Solution 13 - VimfahamView Answer on Stackoverflow
Solution 14 - VimSmartensView Answer on Stackoverflow