We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
-f
1 parent c9ebc97 commit 96cecb5Copy full SHA for 96cecb5
src/completions.rs
@@ -94,10 +94,10 @@ export extern "just" [
94
]"#;
95
96
const FISH_RECIPE_COMPLETIONS: &str = r#"function __fish_just_complete_recipes
97
- if string match -rq '(-f|--justfile)\s*=?(?<justfile>[^\s]+)' -- (string split -- ' -- ' (commandline -pc))[1]
98
- set -fx JUST_JUSTFILE "$justfile"
99
- end
100
- printf "%s\n" (string split " " (just --summary))
+ if string match -rq '\s(-f|--justfile)\s*=?(?<justfile>[^\s]+)' -- (string split -- ' -- ' (commandline -pc))[1]
+ set -fx JUST_JUSTFILE "$justfile"
+ end
+ printf "%s\n" (string split " " (just --summary))
101
end
102
103
# don't suggest files right off
0 commit comments