Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sublimebookmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ def _removeAllBookmarks(self):
global BOOKMARKS
global ERASED_BOOKMARKS

for bookmark in BOOKMARKS:
visibles = getVisibleBookmarks(BOOKMARKS, self.window, self.activeView, BOOKMARKS_MODE)
for bookmark in visibles:
#store erased bookmarks for delayed removal
ERASED_BOOKMARKS.append(deepcopy(bookmark))

Expand Down