diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 494123d1d..807f3c7f7 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -8,9 +8,9 @@ use crate::job::Job; use super::*; use globset::{Glob, GlobBuilder, GlobSetBuilder}; -use helix_core::{encoding, line_ending, shellwords::Shellwords}; use helix_core::fuzzy::fuzzy_match; use helix_core::indent::MAX_INDENT; +use helix_core::{encoding, line_ending, shellwords::Shellwords}; use helix_stdx::env::current_working_dir; use helix_view::document::{read_to_string, DEFAULT_LANGUAGE_NAME}; use helix_view::editor::{Action, CloseError, ConfigEvent}; diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index f22f41896..68f3ddddf 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -14,8 +14,8 @@ use crate::{ use dap::StackFrame; use helix_vcs::DiffProviderRegistry; -use futures_util::{future, StreamExt}; use futures_util::stream::select_all::SelectAll; +use futures_util::{future, StreamExt}; use helix_lsp::{Call, LanguageServerId}; use ignore::WalkBuilder; use tokio_stream::wrappers::UnboundedReceiverStream;