2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-26 19:55:08 +00:00
fish-shell/share/functions/__fish_commandline_test.fish
2010-09-18 10:18:26 +08:00

23 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