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