mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-17 09:26:08 +00:00
17 lines
388 B
Fish
17 lines
388 B
Fish
|
# NAME
|
||
|
# spec.functions - echo functions existing in the global scope that match
|
||
|
# the key glob.
|
||
|
# SYNOPSIS
|
||
|
# spec.functions <key>
|
||
|
#
|
||
|
# EXAMPLES
|
||
|
# spec.functions "describe_"
|
||
|
# spec.functions "before_"
|
||
|
#/
|
||
|
function spec.functions -a key
|
||
|
if [ -n "$key" ]
|
||
|
# Skip empty strings to avoid fetching all global functions.
|
||
|
functions -n | grep \^"$key"
|
||
|
end
|
||
|
end
|