diff options
author | Blaž Hrastnik | 2021-10-17 04:58:11 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-10-17 04:58:11 +0000 |
commit | 83a816740268ec527bf2f908cf752cfcbedc81f9 (patch) | |
tree | 8b28ece40ab5d9a8ad5cddbf2712385bd84a4cc8 /helix-core/src | |
parent | ea59f77a6baa0658b50fed50739e1f8956819395 (diff) |
Invert core -> dap dependency
Diffstat (limited to 'helix-core/src')
-rw-r--r-- | helix-core/src/syntax.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 00c09ea2..822d3181 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -5,7 +5,6 @@ use crate::{ Rope, RopeSlice, Tendril, }; -use helix_dap::DebuggerQuirks; pub use helix_syntax::get_language; use arc_swap::ArcSwap; @@ -129,6 +128,13 @@ pub struct DebugAdapterConfig { pub quirks: DebuggerQuirks, } +// Different workarounds for adapters' differences +#[derive(Debug, Default, PartialEq, Clone, Serialize, Deserialize)] +pub struct DebuggerQuirks { + #[serde(default)] + pub absolute_paths: bool, +} + #[derive(Debug, Serialize, Deserialize)] #[serde(rename_all = "kebab-case")] pub struct IndentationConfiguration { |