aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-24 08:56:18 +0000
committerDmitry Sharshakov2021-08-24 08:56:18 +0000
commitc463142e5e43fa83fc5f8f714af72425d18ba216 (patch)
treef369a44f3ef4b1569d5fc414078d0d6c1c6846b9 /helix-core/src
parent34c6094604cfeca0c1338a20cf9e85bcd8d9b68b (diff)
Create new debugger config format
Diffstat (limited to 'helix-core/src')
-rw-r--r--helix-core/src/syntax.rs5
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)]