diff options
author | Blaž Hrastnik | 2020-12-13 04:35:30 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-13 04:44:51 +0000 |
commit | 7dc24a25ba148a9cd7c936e02cc03873ed6a467b (patch) | |
tree | af38e8d0d65741946c52b5b12824971da7537136 /helix-term/src/commands.rs | |
parent | ef0d062b1fd202fe89bc4bbd33826c46f660ef70 (diff) |
Move ui modules under a ui:: namespace.
Diffstat (limited to 'helix-term/src/commands.rs')
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 04482ef7..b345d2e8 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -10,7 +10,7 @@ use helix_core::{ use once_cell::sync::Lazy; use crate::compositor::Compositor; -use crate::prompt::Prompt; +use crate::ui::Prompt; use helix_view::{ document::Mode, |