]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(netrw): Update `.netrwbook` immediately on bookmark change (#13276)
authorKSR-Yasuda <31273423+KSR-Yasuda@users.noreply.github.com>
Thu, 5 Oct 2023 18:34:17 +0000 (03:34 +0900)
committerGitHub <noreply@github.com>
Thu, 5 Oct 2023 18:34:17 +0000 (20:34 +0200)
closes: #9738

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/autoload/netrw.vim

index 290a0509bddb4851c6026867e3010df2ac6d04e8..e3ac12ffb5d84afaa248543ee1b21614d7e54945 100644 (file)
@@ -3516,6 +3516,11 @@ fun! s:NetrwBookHistHandler(chg,curdir)
     echo "bookmarked the current directory"
    endif
 
+   try
+    call s:NetrwBookHistSave()
+   catch
+   endtry
+
   elseif a:chg == 1
    " change to the bookmarked directory
 "   call Decho("(user: <".v:count."gb>) change to the bookmarked directory",'~'.expand("<slnum>"))
@@ -3660,6 +3665,11 @@ fun! s:NetrwBookHistHandler(chg,curdir)
 "    call Decho("g:netrw_bookmarklist=".string(g:netrw_bookmarklist),'~'.expand("<slnum>"))
    endif
 "   call Decho("resulting g:netrw_bookmarklist=".string(g:netrw_bookmarklist),'~'.expand("<slnum>"))
+
+   try
+    call s:NetrwBookHistSave()
+   catch
+   endtry
   endif
   call s:NetrwBookmarkMenu()
   call s:NetrwTgtMenu()