@@ -1640,7 +1640,7 @@ Config: filters *nvim-tree-config-filters*
16401640
16411641 `U `{custom }` `| nvim_tree.api.filter.custom.toggle() |
16421642 Disable specific file/directory names via:
1643- • a list of backslash escaped | vim.regex | strings e.g. `" ^\\ .git" " `
1643+ • a list of backslash escaped | regular-expression | e.g. `" ^\\ .git" " `
16441644 • a function passed the absolute path of the directory.
16451645
16461646 All filters including live filter may be disabled via {enable} and toggled
@@ -1666,8 +1666,8 @@ Config: filters *nvim-tree-config-filters*
16661666Config: live_filter *nvim-tree-config-live-filter*
16671667
16681668*nvim_tree.config.live_filter*
1669- Live filter allows you to filter the tree nodes dynamically, based on
1670- regex matching, see | vim.regex |
1669+ Live filter allows you to filter the tree nodes dynamically using
1670+ | regular-expression | matching.
16711671
16721672 This feature is bound to the `f ` key by default. The filter can be cleared
16731673 with the `F` key by default.
@@ -1691,7 +1691,7 @@ Config: filesystem_watchers *nvim-tree-config-filesystem-watchers*
16911691 directory changes, resulting in better performance.
16921692
16931693 Watchers may be disabled for absolute directory paths via {ignore_dirs}.
1694- • A list of | vim.regex | to match a path, backslash escaped e.g.
1694+ • A list of | regular-expression | to match a path, backslash escaped e.g.
16951695 `" my-proj/\\ .build$" ` OR
16961696 • A function that is passed an absolute path and returns `true` to disable
16971697 This may be useful when a path is not in `.gitignore` or git integration
0 commit comments