diff options
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/syntax.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index ee7aa0eb..ae99a159 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -57,10 +57,7 @@ pub struct LanguageConfiguration { #[serde(skip)] pub(crate) indent_query: OnceCell<Option<IndentQuery>>, #[serde(skip_serializing_if = "Option::is_none")] - pub debug_adapter: Option<DebugAdapterConfig>, - // TODO: names for those - #[serde(skip_serializing_if = "Option::is_none")] - pub debug_configs: Option<Vec<HashMap<String, serde_json::Value>>>, + pub debugger: Option<DebugAdapterConfig>, } #[derive(Debug, Serialize, Deserialize)] |