diff options
author | Dmitry Sharshakov | 2021-08-23 14:26:12 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-23 14:26:12 +0000 |
commit | b6b99b248783583bdcc2439a78b503a31cbbcce8 (patch) | |
tree | 458daf7fcbfe09b6743d86dfed61744fe7e6c443 /helix-core | |
parent | 839d2105739036decf045f6af85ce05152f514ef (diff) |
config: minor fixes
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/syntax.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index cfe5f5a1..ee7aa0eb 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -58,6 +58,7 @@ pub struct LanguageConfiguration { 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>>>, } |