1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 23:50:04 +08:00

fix(bookmarks): unlet bookmarks when clear

This commit is contained in:
Eric Wong 2024-03-29 02:00:58 +08:00
parent 3a22f555dd
commit 34c343b697

View File

@ -65,6 +65,9 @@ function! bookmarks#delete(file, lnum) abort
call bookmarks#vtext#delete(a:file, s:bookmarks[a:file][a:lnum].vtextid)
endif
unlet s:bookmarks[a:file][a:lnum]
if empty(s:bookmarks[a:file])
unlet s:bookmarks[a:file]
endif
call bookmarks#cache#write(s:bookmarks)
endif
endfunction
@ -130,6 +133,7 @@ function! bookmarks#clear() abort
for lnum in keys(s:bookmarks[file])
call bookmarks#delete(file, lnum)
endfor
unlet s:bookmarks[file]
endif
call bookmarks#cache#write(s:bookmarks)
endfunction