I'd like to use a few lines somewhere in my vim window to show a list of all the files I have open, and what number they are (ie, which number I need to use to switch to them). Ideally, they would be lined up across the top of the screen, almost like tabs, to save room. I'm trying to prevent having to type :ls to get the number before I switch to a window.
|
feedback
|
|
Vim 7 does have tabs, you can use these instead of buffers. To open a file in a new tab use | |||||||
feedback
|
|
Maybe this might be useful to you... map <F4> :ls<CR>:buffer<space> put this in ur vimrc file.... now when you press <f4> you will be shown the list of buffers and prompted for the one to open..... I found it somewhere... Whoever did this... its great.... | |||
|
feedback
|
|
This is what I wanted: http://vim.sourceforge.net/scripts/script.php?script_id=159 | |||
|
feedback
|