feat(#2938): add default filesystem_watchers.ignore_dirs = { "/.ccls-cache", "/build", "/node_modules", "/target", } (#2940)
* feat(#2938): filesystem_watchers.ignore_dirs defaults to { node_modules } to resolve pathalogical issues * feat(#2938): more filesystem_watchers.ignore_dirs defaults to to resolve pathalogical issues * feat(#2938): more filesystem_watchers.ignore_dirs defaults to to resolve pathalogical issues
This commit is contained in:
committed by
GitHub
parent
38aac09151
commit
010ae0365a
@@ -551,7 +551,12 @@ local DEFAULT_OPTS = { -- BEGIN_DEFAULT_OPTS
|
||||
filesystem_watchers = {
|
||||
enable = true,
|
||||
debounce_delay = 50,
|
||||
ignore_dirs = {},
|
||||
ignore_dirs = {
|
||||
"/.ccls-cache",
|
||||
"/build",
|
||||
"/node_modules",
|
||||
"/target",
|
||||
},
|
||||
},
|
||||
actions = {
|
||||
use_system_clipboard = true,
|
||||
|
||||
Reference in New Issue
Block a user