1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 21:20:05 +08:00

fix(bookmark): remove extra unlet

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

View File

@ -133,7 +133,6 @@ 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