mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 10:00:43 +08:00
24 lines
277 B
Fish
24 lines
277 B
Fish
|
|
function __fish_commandline_test
|
|
|
|
set -l is_function no
|
|
for i in (commandline -poc)
|
|
switch $i
|
|
case -f --f --fu --fun --func --funct --functi --functio --function
|
|
set is_function yes
|
|
|
|
case --
|
|
break
|
|
|
|
|
|
end
|
|
end
|
|
|
|
switch $is_function
|
|
case yes
|
|
return 0
|
|
end
|
|
return 1
|
|
|
|
end
|