blob: 7e6b684263d311a37ccb21f211881f7b0c85e768 (
plain)
1
2
3
4
5
6
7
8
9
|
function __complete_boundary
set -lx COMP_LINE (commandline -cp)
test -z (commandline -ct)
and set COMP_LINE "$COMP_LINE "
/usr/bin/boundary
end
complete -f -c boundary -a "(__complete_boundary)"
|