This commit is contained in:
2026-06-27 16:41:35 -04:00
parent 440664c233
commit 538860bfcb
14 changed files with 71 additions and 3 deletions
+7 -1
View File
@@ -1,2 +1,8 @@
# Ruff completion
command -v ruff >/dev/null && eval "$(ruff generate-shell-completion bash 2>/dev/null)"
if command -v ruff >/dev/null; then
if [[ -n ${ZSH_VERSION:-} ]]; then
eval "$(ruff generate-shell-completion zsh 2>/dev/null)"
else
eval "$(ruff generate-shell-completion bash 2>/dev/null)"
fi
fi