Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into shebang_example
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Nov 16, 2023
2 parents ef11e79 + 53fec7b commit da4a521
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 156 deletions.
4 changes: 2 additions & 2 deletions src/completions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ complete -c just -a '(__fish_just_complete_recipes)'
pub(crate) const ZSH_COMPLETION_REPLACEMENTS: &[(&str, &str)] = &[
(
r#" _arguments "${_arguments_options[@]}" \"#,
r#" local common=("#,
r" local common=(",
),
(
r"'*--set=[Override <VARIABLE> with <VALUE>]' \",
Expand Down Expand Up @@ -206,5 +206,5 @@ pub(crate) const BASH_COMPLETION_REPLACEMENTS: &[(&str, &str)] = &[
fi
fi"#,
),
(r#" just)"#, r#" "$1")"#),
(r" just)", r#" "$1")"#),
];
Loading

0 comments on commit da4a521

Please sign in to comment.