diff options
author | Ivan Tham | 2021-06-07 14:34:19 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-10 13:00:08 +0000 |
commit | 7cc13fefe9bd09ea778a0eb8c26bf133e6ad2476 (patch) | |
tree | 764c662e47f12134a8a7f20211573243100777a5 /helix-core/src/state.rs | |
parent | 1a3a92463405fdd4738fbdbfda212aef58a2919d (diff) |
Derive debug without feature
Note that this also removed those `finish_non_exhaustive()`.
Diffstat (limited to 'helix-core/src/state.rs')
-rw-r--r-- | helix-core/src/state.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-core/src/state.rs b/helix-core/src/state.rs index c8a0cf8b..7e4a7f70 100644 --- a/helix-core/src/state.rs +++ b/helix-core/src/state.rs @@ -1,8 +1,7 @@ use crate::{Rope, Selection}; /// A state represents the current editor state of a single buffer. -#[cfg_attr(feature = "debug", derive(Debug))] -#[derive(Clone)] +#[derive(Debug, Clone)] pub struct State { pub doc: Rope, pub selection: Selection, |