zsh-goto/_goto

7 lines
106 B
Text
Executable file

#compdef _goto goto
function _goto {
for label in $(label ls)
do
compadd "$@" "${label}"
done
}