diff options
author | Jan Hrastnik | 2021-06-11 21:57:16 +0000 |
---|---|---|
committer | Jan Hrastnik | 2021-06-16 15:00:30 +0000 |
commit | 17f69a03e0bd6c7bee7e26237dc47dfa0e0dd7c9 (patch) | |
tree | 82cedc3a536a40dd6cdd5eb41a555565fee4f090 /helix-view/src/editor.rs | |
parent | 3756c21baefa6182beaa9a3d5ced9d720cf9adcb (diff) |
ran cargo clippy and cargo fmt
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r-- | helix-view/src/editor.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 90abd067..d7205fbd 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -1,4 +1,6 @@ -use crate::{theme::Theme, tree::Tree, Document, DocumentId, RegisterSelection, View, ViewId, LineEnding}; +use crate::{ + theme::Theme, tree::Tree, Document, DocumentId, LineEnding, RegisterSelection, View, ViewId, +}; use tui::layout::Rect; use tui::terminal::CursorKind; |