aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-09-12 10:36:49 +0000
committerBlaž Hrastnik2020-09-12 10:38:30 +0000
commit9546164dc89515719d4781699e1505b2a50486ef (patch)
tree1fdce9e3cd9ed26f80d9fcab60f9bd3e8a5aa8ef /helix-term
parentee430536a43bb7b51cd857d43a3c9279845b107b (diff)
cargo fmt & clippy lint
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs
index 0c58ac9b..03008221 100644
--- a/helix-term/src/editor.rs
+++ b/helix-term/src/editor.rs
@@ -1,8 +1,8 @@
use crate::{keymap, theme::Theme, Args};
use helix_core::{
- syntax::{HighlightConfiguration, HighlightEvent, Highlighter},
state::coords_at_pos,
state::Mode,
+ syntax::{HighlightConfiguration, HighlightEvent, Highlighter},
State,
};