diff options
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r-- | helix-view/src/editor.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 3e91921b..deb7795c 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -9,6 +9,7 @@ use anyhow::Error; pub use helix_core::diagnostic::Severity; +#[cfg_attr(feature = "debug", derive(Debug))] pub struct Editor { pub tree: Tree, pub documents: SlotMap<DocumentId, Document>, @@ -20,6 +21,7 @@ pub struct Editor { pub status_msg: Option<(String, Severity)>, } +#[cfg_attr(feature = "debug", derive(Debug))] #[derive(Copy, Clone)] pub enum Action { Replace, |