Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sxyazi committed Oct 4, 2023
1 parent 2a1ce22 commit 451f43f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/manager/finder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ impl Finder {
FinderCase::SmartCase => {
let uppercase = s.chars().any(|c| c.is_uppercase());
RegexBuilder::new(s).case_insensitive(!uppercase).build()?
},
}
};
Ok(Self { query, matched: Default::default(), version: 0 })
}
Expand Down
2 changes: 1 addition & 1 deletion core/src/manager/tab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use shared::{Debounce, Defer, InputError, Url};
use tokio::{pin, task::JoinHandle};
use tokio_stream::{wrappers::UnboundedReceiverStream, StreamExt};

use super::{Backstack, Finder, Folder, Mode, Preview, PreviewLock, FinderCase};
use super::{Backstack, Finder, FinderCase, Folder, Mode, Preview, PreviewLock};
use crate::{emit, external::{self, FzfOpt, ZoxideOpt}, files::{File, FilesOp, FilesSorter}, input::InputOpt, Event, Step, BLOCKER};

pub struct Tab {
Expand Down

0 comments on commit 451f43f

Please sign in to comment.