diff options
author | Blaž Hrastnik | 2021-03-22 03:40:07 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-22 03:40:07 +0000 |
commit | cbcacb1063c9b6384867a6078a75595ae2ff6861 (patch) | |
tree | 0b1b48b06eacd14a1ac0eb06581d79b92a01e573 /helix-term/src/commands.rs | |
parent | c4792efead160859d17f8ca969869037b7d2e1d5 (diff) |
Merge some imports.
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index f7e137e0..3e60277c 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -10,8 +10,10 @@ use helix_core::{ use once_cell::sync::Lazy; -use crate::compositor::Compositor; -use crate::ui::{self, Popup, Prompt, PromptEvent}; +use crate::{ + compositor::Compositor, + ui::{self, Popup, Prompt, PromptEvent}, +}; use std::path::PathBuf; |