fix: cargo fmt

This commit is contained in:
ryo246912 2025-01-10 15:21:51 +09:00
parent 089be801b2
commit a2c5598a01
No known key found for this signature in database
GPG key ID: 08BF9A27112516E5
2 changed files with 3 additions and 2 deletions

View file

@ -7,7 +7,8 @@ lazy_static! {
pub static ref NON_VAR_CHARS_REGEX: Regex = Regex::new(r"[^\da-zA-Z_]").expect("Invalid regex");
}
static VERSION_DISCLAIMER: &str = "tldr-c-client (the default one in Homebrew) doesn't support markdown files, so navi can't use it.
static VERSION_DISCLAIMER: &str =
"tldr-c-client (the default one in Homebrew) doesn't support markdown files, so navi can't use it.
The recommended client is tealdeer(https://github.com/dbrgn/tealdeer).";
fn convert_tldr_vars(line: &str) -> String {

View file

@ -11,7 +11,7 @@ pub enum Shell {
Zsh,
Fish,
Elvish,
Nushell
Nushell,
}
#[derive(Error, Debug)]