diff options
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/syntax.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index f3272cff..cfe5f5a1 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -58,6 +58,8 @@ pub struct LanguageConfiguration { pub(crate) indent_query: OnceCell<Option<IndentQuery>>, #[serde(skip_serializing_if = "Option::is_none")] pub debug_adapter: Option<DebugAdapterConfig>, + #[serde(skip_serializing_if = "Option::is_none")] + pub debug_configs: Option<Vec<HashMap<String, serde_json::Value>>>, } #[derive(Debug, Serialize, Deserialize)] |