aboutsummaryrefslogtreecommitdiff
path: root/helix-core
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-23 13:56:41 +0000
committerDmitry Sharshakov2021-08-23 13:56:41 +0000
commitf55a012fb744b258ac84ac0302cb0b87f7d35173 (patch)
tree4a4b91f4ff9cabf5cc5da5f8f7426cc21d9af7c2 /helix-core
parentc5b210df59983a2caa9c389e5cd22aa670fb4a00 (diff)
editor: add debug session config
Diffstat (limited to 'helix-core')
-rw-r--r--helix-core/src/syntax.rs2
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)]