Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Buffer Explorer for vim

Tags:

vim

What do people recommend for easier manipulation of buffers in vim?

Using ls and b1, bn and bp commands is good but maybe there is a better way.

Is lusty explorer the best option?

I am using vim 7.3.

like image 212
dagda1 Avatar asked Feb 05 '12 11:02

dagda1


3 Answers

You should test all of them and see which one is the best according to your tastes and requirements.

I've used LustyExplorer for a while and loved it until I tried CtrlP which I find faster and more intuitive. I have :CtrlPBuffer mapped to ,b and see no reason to complain: it's both elegant, fast and intuitive.

You don't have to rely on plugins, though: :b <tab> allows you to tab through a list of all available buffers. You can do :b pattern<Tab> to get a smaller list.

like image 165
romainl Avatar answered Oct 07 '22 01:10

romainl


Unite.vim is a new plugin and is what I switched to from CtrlP.

This is a good starting point if you want to explore what it can do.

like image 20
Xuan Avatar answered Oct 07 '22 02:10

Xuan


I use minibufexpl.vim. I guess its main advantage is that it takes up very little space.

like image 21
Lars Kotthoff Avatar answered Oct 07 '22 03:10

Lars Kotthoff