jfc what does it take to get this working

This commit is contained in:
Reid 'arrdem' McKenzie 2018-01-16 12:48:54 -08:00
parent 2aa979cf0e
commit 1342e1f5c7

4
_goto
View file

@ -1,9 +1,7 @@
#!/usr/bin/zsh #compdef _goto goto
function _goto { function _goto {
for label in $(_awk '{print $1;}' `_goto_file`) for label in $(_awk '{print $1;}' `_goto_file`)
do do
compadd "$@" "${label}" compadd "$@" "${label}"
done done
}; };
complete -o default -F _goto goto