Skip to content

Commit

Permalink
✨ feat: added completions for yq + glow commands
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquindev committed Dec 8, 2024
1 parent 657e6b6 commit fd09cd5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions config/bash/.bash_completions
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,16 @@ if command_exists pipenv; then
eval "$(_PIPENV_COMPLETE=bash_source pipenv)"
fi

# yq
if command_exists yq; then
source <(yq completion bash)
fi

# glow
if command_exists glow; then
source <(glow completion bash)
fi

##############################################################################################
unset -f command_exists

Expand Down

0 comments on commit fd09cd5

Please sign in to comment.