diff options
author | Ivan Tham | 2021-06-07 04:40:21 +0000 |
---|---|---|
committer | Ivan Tham | 2021-06-07 13:35:31 +0000 |
commit | b5682f984b596da32662dc8b5918811318b0c59f (patch) | |
tree | b76d1f4c111b4ca7c2e9c1d98ed5e5f71e31b661 /helix-term/src/application.rs | |
parent | 68affa3c598723a8b9451ef3dcceda83ae161e39 (diff) |
Separate helix-term as a library
helix-term stuff will now be documented in rustdoc.
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 84824b51..60c81607 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -1,6 +1,6 @@ use helix_view::{document::Mode, Document, Editor, Theme, View}; -use crate::{compositor::Compositor, ui, Args}; +use crate::{args::Args, compositor::Compositor, ui}; use log::{error, info}; |