mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-12-03 14:53:41 +08: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
|