10 lines
234 B
Fish
10 lines
234 B
Fish
|
|
function __complete_terraform
|
|
set -lx COMP_LINE (string join ' ' (commandline -o))
|
|
test (commandline -ct) = ""
|
|
and set COMP_LINE "$COMP_LINE "
|
|
/usr/bin/terraform
|
|
end
|
|
complete -c terraform -a "(__complete_terraform)"
|
|
|