Wikia

Vim Tips Wiki

Watchlist Recent changes

Fast access to the first nine buffers

Tip 967 Printable Monobook Previous Next

created August 6, 2005 · complexity basic · author Alexey Vatchenko · version 6.0


When opening a number of files into buffers a user may want to switch quickly through the open buffers. The following methods will allow the user to map key combinations to buffers for easier access.

Contents

Method 1Edit

Use Alt-X to quickly switch between buffers, where X is the buffer number 1 to 9.

In your .vimrc add:

:map <M-1> :confirm :b1 <CR>
:map <M-2> :confirm :b2 <CR>
...
...
...
:map <M-9> :confirm :b9 <CR>

Note this is somewhat similar to the built-in CTRL-^ command, which can take a count to jump to a specific buffer number.

Method 2Edit

Use <ALT><Left> and <ALT><Right> to cycle through buffers.

In your .vimrc add:

" cycle through buffers with <ALT><Left> and <ALT><Right>
:nmap <M-Left> :bprev<CR>
:nmap <M-Right> :bnext<CR>

See AlsoEdit

CommentsEdit

Pages on Vim Tips Wiki

Add a Page
1,590pages on
this wiki
Advertisement | Your ad here

Latest Photos

Add a Photo
71photos on this wiki
See more >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki