Skip to content

Commit 6536cd8

Browse files
committed
fix: increase filesystem_watchers.max_events from 100 to 1000
1 parent 49bcbca commit 6536cd8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

doc/nvim-tree-lua.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1709,7 +1709,7 @@ Config: filesystem_watchers *nvim-tree-config-filesystem-watchers*
17091709
between filesystem change and tree update.
17101710
• {ignore_dirs}? (`string[]|(fun(path: string): boolean)`, default: `{ "/.ccls-cache", "/build", "/node_modules", "/target", }`)
17111711
Disable for specific directories.
1712-
• {max_events}? (`integer`, default: `100`) Disable for a single
1712+
• {max_events}? (`integer`, default: `1000`) Disable for a single
17131713
directory after {max_events} consecutive events
17141714
with an interval < {debounce_delay}.
17151715

@@ -2182,7 +2182,7 @@ Following is the default configuration, see |nvim_tree.config| for details. >lua
21822182
filesystem_watchers = {
21832183
enable = true,
21842184
debounce_delay = 50,
2185-
max_events = 100,
2185+
max_events = 1000,
21862186
ignore_dirs = {
21872187
"/.ccls-cache",
21882188
"/build",

0 commit comments

Comments
 (0)