mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-29 00:21:14 -03:00
11 lines
263 B
Fish
11 lines
263 B
Fish
# localization: skip(private)
|
|
# returns 0 only if any argument is on of the supplied arguments
|
|
function __fish_any_arg_in
|
|
set -l haystack $argv
|
|
for arg in (commandline -xpc)
|
|
contains -- $arg $haystack
|
|
and return 0
|
|
end
|
|
return 1
|
|
end
|