mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 07:34:32 +00:00
5870ee7723
darcs-hash:20070930074204-75c98-670704072134326d281626dcc6c1e7dc5be66140.gz
23 lines
280 B
Fish
23 lines
280 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
|