Dynamically generate completions for some tools that offer them

This commit is contained in:
ViViDboarder 2025-01-08 15:16:59 -08:00
parent bca70512b4
commit d10c205737

View File

@ -0,0 +1,16 @@
# Generate and source completions for fish
# Source kubectl completions
if type -q kubectl
kubectl completion fish | source
end
# Source colima completions
if type -q colima
colima completion fish | source
end
# Source golangci-lint completions
if type -q golangci-lint
golangci-lint completion fish | source
end