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

Updates to reflect rework of per-tab buffer listing

Update the code and documentation to reflect the rework done on the
per-tab buffer listing code.
jeff 9 лет назад
Родитель
Сommit
40504f28fe
2 измененных файлов с 10 добавлено и 4 удалено
  1. 8 2
      doc/bufexplorer.txt
  2. 2 2
      plugin/bufexplorer.vim

+ 8 - 2
doc/bufexplorer.txt

@@ -1,7 +1,7 @@
-*bufexplorer.txt*              Buffer Explorer       Last Change: 26 Aug 2016
+*bufexplorer.txt*              Buffer Explorer       Last Change: 20 Sep 2016
 
 Buffer Explorer                                *buffer-explorer* *bufexplorer*
-                                Version 7.4.10
+                                Version 7.4.11
 
 Plugin for easily exploring (or browsing) Vim|:buffers|.
 
@@ -253,6 +253,12 @@ The default is 0, so that the size is set by Vim.
 ===============================================================================
 CHANGE LOG                                              *bufexplorer-changelog*
 
+7.4.11   September, 20, 2016
+    - Thanks to jpmv27 for reworking the per-tab buffer listing code.  Fix for
+      g:bufExplorerShowTabBuffer is not working correctly and other "gliches"
+      when the ShotTabBuffer option is enabled.  For example old code would not
+      correctly handle adding/deleting a tab that wasn't the highest-numbered
+      tab.
 7.4.10   August 26, 2016
     - Thanks to buddylindsey for fixing a misspelling in the docs.
 7.4.9    April 01, 2016

+ 2 - 2
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: Friday, 26 August 2016
+" Last Changed: Tuesday, 20 September 2016
 "      Version: See g:bufexplorer_version for version number.
 "        Usage: This file should reside in the plugin directory and be
 "               automatically sourced.
@@ -74,7 +74,7 @@ endif
 "1}}}
 
 " Version number
-let g:bufexplorer_version = "7.4.10"
+let g:bufexplorer_version = "7.4.11"
 
 " Plugin Code {{{1
 " Check for Vim version {{{2