diff options
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 7af19a9b..3e91921b 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -12,7 +12,7 @@ pub use helix_core::diagnostic::Severity; pub struct Editor { pub tree: Tree, pub documents: SlotMap<DocumentId, Document>, - pub count: Option<usize>, + pub count: Option<std::num::NonZeroUsize>, pub register: RegisterSelection, pub theme: Theme, pub language_servers: helix_lsp::Registry, |