fish-shell/share/functions/__fish_commandline_test.fish
Maxim Gonchar 8224d9f984 A lot of new completions.
Some small updates and fixes of old functions and completions.
2012-06-12 20:19:31 +04:00

23 lines
369 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