Skip to content

Commit

Permalink
bless tidy
Browse files Browse the repository at this point in the history
Signed-off-by: onur-ozkan <work@onurozkan.dev>
  • Loading branch information
onur-ozkan committed Jan 11, 2024
1 parent 8d0f888 commit f02f09a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/etc/completions/x.py.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1761,4 +1761,8 @@ _x.py() {
esac
}

complete -F _x.py -o nosort -o bashdefault -o default x.py
if [[ "${BASH_VERSINFO[0]}" -eq 4 && "${BASH_VERSINFO[1]}" -ge 4 || "${BASH_VERSINFO[0]}" -gt 4 ]]; then
complete -F _x.py -o nosort -o bashdefault -o default x.py
else
complete -F _x.py -o bashdefault -o default x.py
fi

0 comments on commit f02f09a

Please sign in to comment.