Forráskód Böngészése

chore: prepping for next release

jlanzarotta 9 hónapja
szülő
commit
90649eeb96
2 módosított fájl, 28 hozzáadás és 6 törlés
  1. 27 3
      doc/bufexplorer.txt
  2. 1 3
      plugin/bufexplorer.vim

+ 27 - 3
doc/bufexplorer.txt

@@ -1,7 +1,7 @@
-*bufexplorer.txt*              Buffer Explorer       Last Change: 05 Mar 2025
+*bufexplorer.txt*              Buffer Explorer       Last Change: 19 Mar 2025
 
 Buffer Explorer                                *buffer-explorer* *bufexplorer*
-                                Version 7.8.0
+                                Version 7.9.0
 
 Plugin for easily exploring (or browsing) Vim|:buffers|.
 
@@ -14,7 +14,7 @@ Plugin for easily exploring (or browsing) Vim|:buffers|.
 |bufexplorer-credits|        Credits
 |bufexplorer-copyright|      Copyright
 
-For Vim version 7.0 and above.
+For Vim version 7.4 and above.
 This plugin is only available if 'compatible' is not set.
 
 {Vi does not have any of this}
@@ -378,6 +378,30 @@ The default is 1.
 ===============================================================================
 CHANGE LOG                                              *bufexplorer-changelog*
 
+7.9.0    March 19, 2025
+     What's Changed
+     - Another major patch implemented by Dr. Michael Henry.
+       * Improve terminal buffer display and toggling ability.
+         https://github.com/jlanzarotta/bufexplorer/pull/123
+         - Improve the display of terminal buffers to be a uniform
+           /current/working/directory/!PID:shellName on Vim and Neovim.
+         - Enable the ability to toggle the showing of terminal buffers
+           (via the X command).
+       * Buffer removal enhancements.
+         https://github.com/jlanzarotta/bufexplorer/pull/124
+         - Allow deletion/wiping of Neovim terminal buffers (addresses Feature
+           Request: Add an option to do :bd! #69).
+         - Retain buffer until it has been fully wiped.
+         - Improve error message when deleting an unlisted buffer.
+       * Allow customized mappings.
+         https://github.com/jlanzarotta/bufexplorer/pull/125
+         - Provide a mechanism for users to adjust BufExplorer command mappings.
+           This addresses Exit on 'Esc' press #73 and Add l as an additional
+           key to select a buffer #113.
+         - Expose new "forced" delete and wipe actions that may be optionally
+           mapped by the user. This removes confirmation for modified buffers
+           and terminal buffers.
+         - Remove incomplete visual-mode d/D mappings.
 7.8.0    March 05, 2025
      After all these many years, bufexplorer now requires Vim version 7.4 or
      greater.

+ 1 - 3
plugin/bufexplorer.vim

@@ -74,7 +74,7 @@ endif
 "1}}}
 
 " Version number.
-let g:bufexplorer_version = "7.8.0"
+let g:bufexplorer_version = "7.9.0"
 
 " Plugin Code {{{1
 " Check for Vim version {{{2
@@ -697,7 +697,6 @@ endfunction
 
 " MapKeys {{{2
 function! s:MapKeys()
-
     nnoremap <silent> <buffer> <Plug>(BufExplorer_BufferDelete)             :call <SID>RemoveBuffer("delete")<CR>
     nnoremap <silent> <buffer> <Plug>(BufExplorer_BufferDeleteForced)       :call <SID>RemoveBuffer("force_delete")<CR>
     nnoremap <silent> <buffer> <Plug>(BufExplorer_BufferWipe)               :call <SID>RemoveBuffer("wipe")<CR>
@@ -751,7 +750,6 @@ function! s:MapKeys()
     nmap <nowait> <buffer> V                <Plug>(BufExplorer_OpenBufferSplitLeft)
     nmap <nowait> <buffer> X                <Plug>(BufExplorer_ToggleShowTerminal)
 
-
     for k in ["G", "n", "N", "L", "M", "H"]
         execute "nnoremap <buffer> <silent>" k ":keepjumps normal!" k."<CR>"
     endfor