We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e076456 commit faa6dd0Copy full SHA for faa6dd0
1 file changed
scripts/generate-completions.sh
@@ -24,7 +24,14 @@ main() {
24
25
gen_comp "gh" "completion"
26
gen_comp "starship" "completions"
27
- gen_comp "yazi" "completion"
+
28
+ # Special case for yazi which uses --completion flag
29
+ if command_exists yazi; then
30
+ log "Generating completions for yazi..."
31
+ yazi --completion bash > "$BASH_COMP_DIR/yazi" 2>/dev/null || true
32
+ yazi --completion zsh > "$ZSH_COMP_DIR/_yazi" 2>/dev/null || true
33
+ fi
34
35
gen_comp "uv" "generate-shell-completion"
36
37
# Special cases
0 commit comments