zsh-goto/_goto

8 lines
124 B
Text

function _goto {
for label in $(_awk '{print $1}' `_gotofile`)
do
compadd "$@" $label
done
};
compdef _goto goto