Merge pull request #932 from ryo246912/master

fix: CI
This commit is contained in:
Denis Isidoro 2025-01-18 07:31:27 -03:00 committed by GitHub
commit bb1efa4e95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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)]