oh-my-fish/pkg/omf/functions/compat/available.fish

11 lines
249 B
Fish
Raw Normal View History

function available
echo (status -t)[5] | read -la caller
printf 'warning: function %savailable%s is deprecated and will be removed soon.\n' \
(set_color -u) (set_color normal)
contains input $caller
or echo $caller
type -q $argv
end