Skip to content

Commit

Permalink
Version 7.0.9
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
jeff lanzarotta authored and vim-scripts committed Oct 18, 2010
1 parent ae1007c commit 5014341
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
12 changes: 8 additions & 4 deletions 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* Buffer Explorer *buffer-explorer* *bufexplorer*
Version 7.0.8 Version 7.0.9


Plugin for easily exploring (or browsing) open buffers Plugin for easily exploring (or browsing) open buffers


Expand Down Expand Up @@ -40,7 +40,7 @@ Command to use once exploring:
p Toggles the showing of a split filename/pathname. p Toggles the showing of a split filename/pathname.
q Quit exploring. q Quit exploring.
s Selects the order the buffers are listed in. Either by their 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'. t Toggles split type. Only available in 'split mode'.
r Reverses the order the buffers are listed in. r Reverses the order the buffers are listed in.
? Displays help information. ? Displays help information.
Expand Down Expand Up @@ -133,6 +133,10 @@ Note: This is only available when using vim 7.0 and above.
=============================================================================== ===============================================================================
CHANGE LOG *bufexplorer-changelog* 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. 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 The bug was related to the incorrect displaying of the buffer
explorer's window title. explorer's window title.
Expand Down Expand Up @@ -266,4 +270,4 @@ helped and gave me suggestions. I wouldn't want to leave anyone out so I
won't list names. won't list names.


=============================================================================== ===============================================================================
vim:tw=78:noet:ts=8:ft=help:norl: vim:tw=78:noet:wrap:ts=8:ft=help:norl:
8 changes: 4 additions & 4 deletions plugin/bufexplorer.vim
Expand Up @@ -10,7 +10,7 @@
" Name Of File: bufexplorer.vim " Name Of File: bufexplorer.vim
" Description: Buffer Explorer Vim Plugin " Description: Buffer Explorer Vim Plugin
" Maintainer: Jeff Lanzarotta (delux256-vim at yahoo dot com) " 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. " Version: See g:loaded_bufexplorer for version number.
" Usage: Normally, this file should reside in the plugins " Usage: Normally, this file should reside in the plugins
" directory and be automatically sourced. If not, you must " directory and be automatically sourced. If not, you must
Expand Down Expand Up @@ -39,7 +39,7 @@ if exists("g:loaded_bufexplorer") || &cp
endif endif


" Version number. " Version number.
let g:loaded_bufexplorer = "7.0.8" let g:loaded_bufexplorer = "7.0.9"


" Setup the global MRUList. " Setup the global MRUList.
let g:MRUList = "," let g:MRUList = ","
Expand Down Expand Up @@ -447,7 +447,7 @@ function! <SID>AddHeader()


let header = header."\"=\n" let header = header."\"=\n"


silent! put! =header silent! put! = header
endfunction endfunction


" BuildBufferList {{{1 " BuildBufferList {{{1
Expand Down Expand Up @@ -584,7 +584,7 @@ function! <SID>BuildBufferList()
let _lineNbr = line(".") + 1 let _lineNbr = line(".") + 1
endif endif


put = fileNames silent! put = fileNames


call <SID>SortListing() call <SID>SortListing()
endfunction endfunction
Expand Down

0 comments on commit 5014341

Please sign in to comment.