Skip to content

Commit

Permalink
Version 7.2.6
Browse files Browse the repository at this point in the history
Thanks to Michael Henry for pointing out that I totally forgot to update the inline help to reflect the previous change to the 'd' and 'D' keys. Opps!
  • Loading branch information
jeff lanzarotta authored and vim-scripts committed Oct 18, 2010
1 parent 7ab96f3 commit dd9cc70
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions doc/bufexplorer.txt
@@ -1,7 +1,7 @@
*bufexplorer.txt* Buffer Explorer Last Change: 02 Feb 2010
*bufexplorer.txt* Buffer Explorer Last Change: 10 Feb 2010

Buffer Explorer *buffer-explorer* *bufexplorer*
Version 7.2.5
Version 7.2.6

Plugin for easily exploring (or browsing) Vim |:buffers|.

Expand Down Expand Up @@ -191,6 +191,10 @@ The default is not to show.
===============================================================================
CHANGE LOG *bufexplorer-changelog*

7.2.6 - Fix:
* Thanks to Michael Henry for pointing out that I totally forgot to
update the inline help to reflect the previous change to the 'd'
and 'D' keys. Opps!
7.2.5 - Fix:
* Philip Morant suggested switching the command (bwipe) associated
with the 'd' key with the command (bdelete) associated with the 'D'
Expand Down
10 changes: 5 additions & 5 deletions plugin/bufexplorer.vim
@@ -1,5 +1,5 @@
"==============================================================================
" Copyright: Copyright (C) 2001-2009 Jeff Lanzarotta
" Copyright: Copyright (C) 2001-2010 Jeff Lanzarotta
" Permission is hereby granted to use and distribute this code,
" with or without modifications, provided that this copyright
" notice is copied with it. Like anything else that's free,
Expand All @@ -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: Tuesday, 02 Feb 2010
" Last Changed: Friday, 12 Feb 2010
" Version: See g:bufexplorer_version for version number.
" Usage: This file should reside in the plugin directory and be
" automatically sourced.
Expand Down Expand Up @@ -38,7 +38,7 @@ endif
"1}}}

" Version number
let g:bufexplorer_version = "7.2.5"
let g:bufexplorer_version = "7.2.6"

" Check for Vim version 700 or greater {{{1
if v:version < 700
Expand Down Expand Up @@ -560,8 +560,8 @@ function! s:BECreateHelp()
call add(header, '" <F1> : toggle this help')
call add(header, '" <enter> or o or Mouse-Double-Click : open buffer under cursor')
call add(header, '" <shift-enter> or t : open buffer in another tab')
call add(header, '" D : delete buffer')
call add(header, '" d : wipe buffer')
call add(header, '" d : delete buffer')
call add(header, '" D : wipe buffer')
call add(header, '" f : toggle find active buffer')
call add(header, '" p : toggle spliting of file and path name')
call add(header, '" q : quit')
Expand Down

0 comments on commit dd9cc70

Please sign in to comment.