From 50143419a1f9173a8d3fa272c2c0e975c09e420d Mon Sep 17 00:00:00 2001 From: jeff lanzarotta Date: Tue, 28 Feb 2006 00:00:00 +0000 Subject: [PATCH] Version 7.0.9 Martin Grenfell found and eliminated an annoying bug in the bufexplorer/winmanager integration. The bug was were an annoying message would be displayed when a window was split or a new file was opened in a new window. Thanks Martin! --- doc/bufexplorer.txt | 12 ++++++++---- plugin/bufexplorer.vim | 8 ++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/doc/bufexplorer.txt b/doc/bufexplorer.txt index bbd107a..fe2ef9c 100644 --- a/doc/bufexplorer.txt +++ b/doc/bufexplorer.txt @@ -1,7 +1,7 @@ -*bufexplorer.txt* Buffer Explorer Last Change: 18 Jan 2006 +*bufexplorer.txt* Buffer Explorer Last Change: 28 Feb 2006 Buffer Explorer *buffer-explorer* *bufexplorer* - Version 7.0.8 + Version 7.0.9 Plugin for easily exploring (or browsing) open buffers @@ -40,7 +40,7 @@ Command to use once exploring: p Toggles the showing of a split filename/pathname. q Quit exploring. s Selects the order the buffers are listed in. Either by their - name, by their number or by most recently used. + name, by their number or by most recently used (MRU). t Toggles split type. Only available in 'split mode'. r Reverses the order the buffers are listed in. ? Displays help information. @@ -133,6 +133,10 @@ Note: This is only available when using vim 7.0 and above. =============================================================================== CHANGE LOG *bufexplorer-changelog* +7.0.9 - Martin Grenfell found and eliminated an annoying bug in the + bufexplorer/winmanager integration. The bug was were an + annoying message would be displayed when a window was split or + a new file was opened in a new window. Thanks Martin! 7.0.8 - Thanks to Mike Li for catching a bug in the WinManager integration. The bug was related to the incorrect displaying of the buffer explorer's window title. @@ -266,4 +270,4 @@ helped and gave me suggestions. I wouldn't want to leave anyone out so I won't list names. =============================================================================== -vim:tw=78:noet:ts=8:ft=help:norl: +vim:tw=78:noet:wrap:ts=8:ft=help:norl: diff --git a/plugin/bufexplorer.vim b/plugin/bufexplorer.vim index e558356..c7126eb 100644 --- a/plugin/bufexplorer.vim +++ b/plugin/bufexplorer.vim @@ -10,7 +10,7 @@ " Name Of File: bufexplorer.vim " Description: Buffer Explorer Vim Plugin " Maintainer: Jeff Lanzarotta (delux256-vim at yahoo dot com) -" Last Changed: Wednesday, 18 January 2006 +" Last Changed: Monday, 27 February 2006 " Version: See g:loaded_bufexplorer for version number. " Usage: Normally, this file should reside in the plugins " directory and be automatically sourced. If not, you must @@ -39,7 +39,7 @@ if exists("g:loaded_bufexplorer") || &cp endif " Version number. -let g:loaded_bufexplorer = "7.0.8" +let g:loaded_bufexplorer = "7.0.9" " Setup the global MRUList. let g:MRUList = "," @@ -447,7 +447,7 @@ function! AddHeader() let header = header."\"=\n" - silent! put! =header + silent! put! = header endfunction " BuildBufferList {{{1 @@ -584,7 +584,7 @@ function! BuildBufferList() let _lineNbr = line(".") + 1 endif - put = fileNames + silent! put = fileNames call SortListing() endfunction