diff options
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/indent.rs | 1 | ||||
-rw-r--r-- | helix-core/src/syntax.rs | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/helix-core/src/indent.rs b/helix-core/src/indent.rs index f5f36aca..4b74aa7a 100644 --- a/helix-core/src/indent.rs +++ b/helix-core/src/indent.rs @@ -458,6 +458,7 @@ where unit: String::from(" "), }), indent_query: OnceCell::new(), + debugger: None, }], }); diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 64b921e6..a7410203 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -5,6 +5,7 @@ use crate::{ Rope, RopeSlice, Tendril, }; +use helix_dap::DebugAdapterConfig; pub use helix_syntax::get_language; use arc_swap::ArcSwap; @@ -55,6 +56,8 @@ pub struct LanguageConfiguration { #[serde(skip)] pub(crate) indent_query: OnceCell<Option<IndentQuery>>, + #[serde(skip_serializing_if = "Option::is_none")] + pub debugger: Option<DebugAdapterConfig>, } #[derive(Debug, Serialize, Deserialize)] |