Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 5 additions & 33 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,16 @@
VIM bufferlist
==============

This is an implementation of [EMACS bufferlist](http://github.com/rockpiper/emacs-bufferlist) for [VIM](http://www.vim.org).
Deprecation warning
-------------------

About
-----

Upon keypress this script display a nice list of buffers on the left, which
can be selected with mouse or keyboard. As soon as a buffer is selected
(Return, double click) the list disappears.

The selection can be cancelled with the same key that is configured to open
the list or by pressing `q`. Movement key and mouse (wheel) should work as
one expects.

Buffers that are visible (in any window) are marked with `*`, ones that are
modified are marked with `+`.

To delete a buffer from the list (i.e. close the file) press `d`.

Usage
-----

Put bufferlist.vim file into your `~/.vim/plugin` directory and set it up
like this in your `~/.vimrc`:

### Needed

map <silent> <F3> :call BufferList()<CR>

### Optional

let g:BufferListWidth = 25
let g:BufferListMaxWidth = 50
hi BufferSelected term=reverse ctermfg=white ctermbg=red cterm=bold
hi BufferNormal term=NONE ctermfg=black ctermbg=darkcyan cterm=NONE
Project moved here: [Vim NextBufferList](https://github.com/szw/vim-next_bufferlist). The further
development will continued only there.

License
-------

Copyright(c) 2005, Robert Lillack <rob@burningsoda.com>
Redistribution in any form with or without modification permitted.

Modifications (c) 2013, Szymon Wrozynski <szymon@wrozynski.com>
Loading