Skip to content

Commit

Permalink
edited-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Nov 25, 2012
1 parent 2c99409 commit 7d910c2
Showing 1 changed file with 26 additions and 9 deletions.
35 changes: 26 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
Buffet is a plugin for the vim editor for listing and switching buffers, windows and tabs.([vim.org](http://www.vim.org/scripts/script.php?script_id=3896))

New in version 2.60

New in version 2.50

With this version you can format the display of buffer list using a callback function. Set the call back using the line in your vimrc

let g:Buffetbufferformatfunction = "s:callback"

You can replace s:callback with your callback function name. The call back function accept following parameters and must return a one dimensional list of columns. If empty list is returned, the entry is not
displayed.
* Added two new keyboard commands to mark a buffer in the list of displayed Buffers.
* Use 'm' to toggle mark on a single buffer, and 'M' to clear all the previously set marks.
* The two new commands for this operation are 'Buffettogglemark' and 'Buffetclearmarks'

Parameters:

Expand Down Expand Up @@ -58,6 +54,18 @@ You can now set your own maps to the commands given below.

* Buffettoggledetail - Toggle detailed display of file path

* Buffettogglemark - Toggle a mark on a buffer

* Buffetclearmarks - Clear all marks set on the buffers

New in version 2.50

With this version you can format the display of buffer list using a callback function. Set the call back using the line in your vimrc

let g:Buffetbufferformatfunction = "s:callback"

You can replace s:callback with your callback function name. The call back function accept following parameters and must return a one dimensional list of columns. If empty list is returned, the entry is not
displayed.

New in version 2.10[(Screenshot)](http://i43.tinypic.com/33kadsx.png)

Expand Down Expand Up @@ -133,7 +141,16 @@ This command deletes the selected buffer from the buffer list. Buffer list windo

This command closes the selected window. It does not matter if the window is open in another tab. Buffer is not removed from the list. The buffer list window remains open. With this you can use the buffer list window as a remote control to navigate to or close any window in any tab.

### m
### a

Toggles the detailed view for file paths.

### m

Toggles a mark on the buffer

### M

Clears all marks set on the buffers


0 comments on commit 7d910c2

Please sign in to comment.