Unnamed repository; edit this file 'description' to name the repository.
config
| -rw-r--r-- | helix-core/src/syntax/config.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-core/src/syntax/config.rs b/helix-core/src/syntax/config.rs index f4e22ad9b..8b21583b0 100644 --- a/helix-core/src/syntax/config.rs +++ b/helix-core/src/syntax/config.rs @@ -448,6 +448,8 @@ pub struct LanguageServerConfiguration { pub timeout: u64, #[serde(default)] pub required_root_patterns: Option<GlobSet>, + #[serde(default)] + pub requires_tree_sitting: bool, } #[derive(Debug, Clone, Serialize, Deserialize)] |