diff options
author | Blaž Hrastnik | 2021-03-18 04:45:57 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-18 05:17:32 +0000 |
commit | 59e60241864dcf711325109423d74cf6e8b6463d (patch) | |
tree | d89a4036a46d2533321c1dd62b1d3c3b60fda693 /helix-term/src/ui | |
parent | dbcc099f484ad186782370ed0cf61b3e8d27282b (diff) |
Remove State from a few more signatures.
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index b79b05e3..8ba6d901 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -6,7 +6,7 @@ use crate::ui::text_color; use helix_core::{ indent::TAB_WIDTH, syntax::{self, HighlightEvent}, - Position, Range, State, + Position, Range, }; use helix_view::{document::Mode, Document, Editor, Theme, View}; use std::borrow::Cow; |