Skip to content

Commit 7d655ec

Browse files
committed
feat(#1850): add no bookmark filter - style
1 parent c38aeaf commit 7d655ec

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
@@ -132,7 +132,11 @@ function M.should_filter(path, status)
132132
return false
133133
end
134134

135-
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)
135+
return git(path, status.git_status)
136+
or buf(path, status.bufinfo, status.unloaded_bufnr)
137+
or dotfile(path)
138+
or custom(path)
139+
or bookmark(path, status.bookmarks)
136140
end
137141

138142
function M.setup(opts)

0 commit comments

Comments
 (0)