diff options
Diffstat (limited to 'helix-term/src/compositor.rs')
-rw-r--r-- | helix-term/src/compositor.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-term/src/compositor.rs b/helix-term/src/compositor.rs index d7ca6f26..023f9b49 100644 --- a/helix-term/src/compositor.rs +++ b/helix-term/src/compositor.rs @@ -5,8 +5,7 @@ use crossterm::event::Event; use helix_core::Position; use smol::Executor; -use tui::buffer::Buffer as Surface; -use tui::layout::Rect; +use tui::{buffer::Buffer as Surface, layout::Rect}; pub type Callback = Box<dyn FnOnce(&mut Compositor, &mut Editor)>; |