mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 10:00:43 +08:00
cf8e746d0c
darcs-hash:20070925161447-75c98-1feaef88a4b518badb7879f598f06ab650a8f93b.gz
21 lines
210 B
Fish
21 lines
210 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
|