mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-04 00:58:46 +00:00
9 lines
154 B
Fish
9 lines
154 B
Fish
|
function __fish_seen_argument_from
|
||
|
for arg in $argv
|
||
|
if __fish_seen_argument -- $arg
|
||
|
return 0
|
||
|
end
|
||
|
end
|
||
|
return 1
|
||
|
end
|