Commit e04ba4f3 authored by Justin Hileman's avatar Justin Hileman

Merge pull request #284 from oh-my-fish/deprecate-available

lib: deprecate `available` function
parents 370913ec 65dfadfc
# SYNOPSIS
# available [name]
#
# OVERVIEW
# Check if a function or program is available.
function available -a name -d "Check if a function or program is available."
type "$name" ^/dev/null >&2
end
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment