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

Version 7.4.4

7.4.4    August 19, 2014
- Revert change where bufexplorer windows was closed even if the target
buffer has not been loaded yet.
7.4.3    August 13, 2014
- Ivan Ukhov fixed issue with deleting the last window.  This update
also fixes as well as another.  If you have say, NERDtree open on the
left side and bufexplorer on the right, that bufexplorer would close
NERDtree erroneously thinking that it is closing itself.
- Radoslaw Burny fixed a few bugs that surfaced when bufexplorer is used
within winmanager.
jlanzarotta 11 лет назад
Родитель
Сommit
fc022c55a5
2 измененных файлов с 23 добавлено и 10 удалено
  1. 20 7
      doc/bufexplorer.txt
  2. 3 3
      plugin/bufexplorer.vim

+ 20 - 7
doc/bufexplorer.txt

@@ -1,7 +1,7 @@
-*bufexplorer.txt*              Buffer Explorer       Last Change: 13 Aug 2014
+*bufexplorer.txt*              Buffer Explorer       Last Change: 19 Aug 2014
 
 Buffer Explorer                                *buffer-explorer* *bufexplorer*
-                                Version 7.4.3
+                                Version 7.4.4
 
 Plugin for easily exploring (or browsing) Vim|:buffers|.
 
@@ -50,6 +50,14 @@ To start exploring in a newly split vertical window, use: >
 If you would like to use something other than '\', you may simply change the
 leader (see |mapleader|).
 
+When \bs or \bv is issued, bufexplorer opens in either a horizonally or
+vertically split window.  By issusing either of these commands, the user is
+telling bufexplorer that they want to split the window and have bufexplorer
+show the buffer they are about to select (from the bufexplorer windows) in the
+newly split window.  When \be is issued, bufexplorer opens the bufexplorer
+contents in the current window and the buffer the user selects is opened in
+the current window.
+
 Note: If the current buffer is modified when bufexplorer started, the current
       window is always split and the new bufexplorer is displayed in that new
       window.
@@ -242,11 +250,16 @@ The default is 0, so that the size is set by Vim.
 ===============================================================================
 CHANGE LOG                                              *bufexplorer-changelog*
 
-7.4.3    August 13, 2013
+7.4.4    August 19, 2014
+    - Revert change where bufexplorer windows was closed even if the target
+      buffer has not been loaded yet.
+7.4.3    August 13, 2014
     - Ivan Ukhov fixed issue with deleting the last window.  This update also
-      fixes as well as anotherIf you have say, NERDtree open on the left side
-      and bufexplorer on the right, that bufexplorer would close NERDtree
-	  erroneously thinking that it is closing itself.
+      fixes as well as another.  If you have say, NERDtree open on the left
+      side and bufexplorer on the right, that bufexplorer would close NERDtree
+      erroneously thinking that it is closing itself.
+    - Radoslaw Burny fixed a few bugs that surfaced when bufexplorer is used
+      within winmanager.
 7.4.2    October 22, 2013
     - Added global option g:bufExplorerDisableDefaultKeyMapping.  This option
       controls weather the default key mappings (\be, \bs, and \bv) are
@@ -682,7 +695,7 @@ won't list names.
 ===============================================================================
 COPYRIGHT                                               *bufexplorer-copyright*
 
-Copyright (c) 2001-2013, Jeff Lanzarotta
+Copyright (c) 2001-2014, Jeff Lanzarotta
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without

+ 3 - 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: Wednesday, 13 August 2014
+" Last Changed: Tuesday, 19 August 2014
 "      Version: See g:bufexplorer_version for version number.
 "        Usage: This file should reside in the plugin directory and be
 "               automatically sourced.
@@ -72,7 +72,7 @@ endif
 "2}}}
 
 " Version number
-let g:bufexplorer_version = "7.4.3"
+let g:bufexplorer_version = "7.4.4"
 
 " Check for Vim version {{{2
 if v:version < 700
@@ -1191,7 +1191,7 @@ call s:Set("g:bufExplorerShowDirectories", 1)           " (Dir's are added by co
 call s:Set("g:bufExplorerShowRelativePath", 0)          " Show listings with relative or absolute paths?
 call s:Set("g:bufExplorerShowTabBuffer", 0)             " Show only buffer(s) for this tab?
 call s:Set("g:bufExplorerShowUnlisted", 0)              " Show unlisted buffers?
-call s:Set("g:bufExplorerShowNoName", 0)                " Show "No Name" buffers?
+call s:Set("g:bufExplorerShowNoName", 0)                " Show 'No Name' buffers?
 call s:Set("g:bufExplorerSortBy", "mru")                " Sorting methods are in s:sort_by:
 call s:Set("g:bufExplorerSplitBelow", &splitbelow)      " Should horizontal splits be below or above current window?
 call s:Set("g:bufExplorerSplitOutPathName", 1)          " Split out path and file name?