mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
10 lines
208 B
Fish
10 lines
208 B
Fish
|
|
function __complete_nomad
|
|
set -lx COMP_LINE (commandline -cp)
|
|
test -z (commandline -ct)
|
|
and set COMP_LINE "$COMP_LINE "
|
|
/usr/local/bin/nomad
|
|
end
|
|
complete -f -c nomad -a "(__complete_nomad)"
|
|
|