mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-03-10 05:25:14 +08:00

This PR officially marks available as deprecated, moving the deprecated functionality to omf plugin compat quarantine directory.
11 lines
249 B
Fish
11 lines
249 B
Fish
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
|