Просмотр исходного кода

Thanks to Phil Runninger for added the ability to toggle the bufexplorer
list on and off uting the :ToggleBufExplorer command, the map
<Leader>bt, and the function ToggleBufExplorer().

jlanzarotta 11 лет назад
Родитель
Сommit
72b06e2dce
2 измененных файлов с 9 добавлено и 6 удалено
  1. 7 3
      doc/bufexplorer.txt
  2. 2 3
      plugin/bufexplorer.vim

+ 7 - 3
doc/bufexplorer.txt

@@ -1,7 +1,7 @@
-*bufexplorer.txt*              Buffer Explorer       Last Change: 03 Nov 2014
+*bufexplorer.txt*              Buffer Explorer       Last Change: 20 Jan 2015
 
 Buffer Explorer                                *buffer-explorer* *bufexplorer*
-                                Version 7.4.6
+                                Version 7.4.7
 
 Plugin for easily exploring (or browsing) Vim|:buffers|.
 
@@ -42,7 +42,7 @@ USAGE                                                      *bufexplorer-usage*
 
 To start exploring in the current window, use: >
  \be   or   :BufExplorer   or   Your custom key mapping
-To toggle bufexplorer on or off in the current window, use:
+To toggle bufexplorer on or off in the current window, use: >
  \bt   or   :ToggleBufExplorer   or   Your custom key mapping
 To start exploring in a newly split horizontal window, use: >
  \bs   or   :BufExplorerHorizontalSplit   or   Your custom key mapping
@@ -253,6 +253,10 @@ The default is 0, so that the size is set by Vim.
 ===============================================================================
 CHANGE LOG                                              *bufexplorer-changelog*
 
+7.4.7    January 20, 2015
+    - Thanks goes out to Phil Runninger for added the ability to toggle the
+      bufexplorer list on and off using the :ToggleBufExplorer command, the
+      map <Leader>bt, and the function ToggleBufExplorer().
 7.4.6    November 03, 2014
     - Not sure how, but the file format was converted to Dos instead of Unix.
       I converted the file back to Unix.

+ 2 - 3
plugin/bufexplorer.vim

@@ -36,7 +36,7 @@
 " Name Of File: bufexplorer.vim
 "  Description: Buffer Explorer Vim Plugin
 "   Maintainer: Jeff Lanzarotta (delux256-vim at yahoo dot com)
-" Last Changed: Monday, 03 November 2014
+" Last Changed: Tuesday, 20 January 2015
 "      Version: See g:bufexplorer_version for version number.
 "        Usage: This file should reside in the plugin directory and be
 "               automatically sourced.
@@ -75,7 +75,7 @@ endif
 "2}}}
 
 " Version number
-let g:bufexplorer_version = "7.4.6"
+let g:bufexplorer_version = "7.4.7"
 
 " Check for Vim version {{{2
 if v:version < 700
@@ -135,7 +135,6 @@ function! s:Setup()
         autocmd BufWinEnter \[BufExplorer\] call s:Initialize()
         autocmd BufWinLeave \[BufExplorer\] call s:Cleanup()
         autocmd TabEnter * call s:TabEnter()
-        autocmd SessionLoadPost * call s:Reset()
     augroup END
 endfunction