mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
20 lines
208 B
Fish
20 lines
208 B
Fish
|
|
function __fish_bind_test2
|
|
set -l args
|
|
for i in (commandline -poc)
|
|
switch $i
|
|
case "-*"
|
|
|
|
case "*"
|
|
set args $args $i
|
|
end
|
|
end
|
|
|
|
switch (count $args)
|
|
case 2
|
|
return 0
|
|
end
|
|
|
|
return 1
|
|
|
|
end
|