From: KSR-Yasuda <31273423+KSR-Yasuda@users.noreply.github.com> Date: Thu, 5 Oct 2023 18:34:17 +0000 (+0900) Subject: runtime(netrw): Update `.netrwbook` immediately on bookmark change (#13276) X-Git-Tag: v9.0.1990~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f449825ae23865437a74ea4140fd32780c02ce43;p=thirdparty%2Fvim.git runtime(netrw): Update `.netrwbook` immediately on bookmark change (#13276) closes: #9738 Signed-off-by: Christian Brabandt --- diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim index 290a0509bd..e3ac12ffb5 100644 --- a/runtime/autoload/netrw.vim +++ b/runtime/autoload/netrw.vim @@ -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("")) @@ -3660,6 +3665,11 @@ fun! s:NetrwBookHistHandler(chg,curdir) " call Decho("g:netrw_bookmarklist=".string(g:netrw_bookmarklist),'~'.expand("")) endif " call Decho("resulting g:netrw_bookmarklist=".string(g:netrw_bookmarklist),'~'.expand("")) + + try + call s:NetrwBookHistSave() + catch + endtry endif call s:NetrwBookmarkMenu() call s:NetrwTgtMenu()