Skip to content

Commit 87a6ebe

Browse files
committed
feat(#1850): add no bookmark filter - style
1 parent 8cb9aec commit 87a6ebe

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lua/nvim-tree/explorer/filters.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,11 @@ function M.should_filter(path, status)
140140
return false
141141
end
142142

143-
return git(path, status.git_status) or buf(path, status.bufinfo, status.unloaded_bufnr) or dotfile(path) or custom(path) or bookmark(path, status.bookmarks)
143+
return git(path, status.git_status)
144+
or buf(path, status.bufinfo, status.unloaded_bufnr)
145+
or dotfile(path)
146+
or custom(path)
147+
or bookmark(path, status.bookmarks)
144148
end
145149

146150
function M.setup(opts)

0 commit comments

Comments
 (0)