tags:

views:

159

answers:

3

Similar in appearance to Vim as a note taking platform (SO), I would like a pane with a list of open buffers that can be used as a jump to list. This is one feature in many IDEs and other advanced editors that is missing. Having a dozen buffers or so open becomes confusing as to which buffer is where.

+1  A: 

There are several Vim add-ons designed to ease buffer navigation. You can find a partial list here: Vim Tips Wiki - Easier buffer switching.

A few of the most popular are:

Note that some filesystem navigation add-ons, like The NERD Tree, are also smart about their buffer handling. If a file is already open in an existing buffer, for example, NERD Tree will select that buffer instead of attempting to open the file again. (NERD Tree also allows you to keep the file tree open in a separate pane, which I really like.)

One last thought -- if you're using a version of gVim that supports tear-off menus, you can just tear off the Buffers pulldown and use it as a jump list.

Bill Odom
+1  A: 

How about using tabs? :help tabpage

Walter
Interesting feature.
A: 

I like minibufexpl personally; sometimes mixed with tabs to keep specific alignment.

wom