1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 23:50:04 +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]) for lnum in keys(s:bookmarks[file])
call bookmarks#delete(file, lnum) call bookmarks#delete(file, lnum)
endfor endfor
unlet s:bookmarks[file]
endif endif
call bookmarks#cache#write(s:bookmarks) call bookmarks#cache#write(s:bookmarks)
endfunction endfunction