We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d1af0d commit 441afcdCopy full SHA for 441afcd
crates/emmylua_ls/src/handlers/initialized/regsiter_file_watch.rs
@@ -52,11 +52,11 @@ fn register_files_watch_use_lsp_client(client: Arc<ClientProxy>) {
52
kind: Some(WatchKind::Create | WatchKind::Change | WatchKind::Delete),
53
},
54
FileSystemWatcher {
55
- glob_pattern: GlobPattern::String(".luarc.json".into()),
+ glob_pattern: GlobPattern::String("**/.luarc.json".into()),
56
57
58
59
- glob_pattern: GlobPattern::String(".emmyrc.json".into()),
+ glob_pattern: GlobPattern::String("**/.emmyrc.json".into()),
60
61
62
],
0 commit comments