mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 21:35:04 +08:00
23 lines
337 B
Fish
23 lines
337 B
Fish
function __fish_seen_argument
|
|
argparse 's/short=+' 'l/long=+' -- $argv
|
|
|
|
set cmd (commandline -co)
|
|
set -e cmd[1]
|
|
for t in $cmd
|
|
for s in $_flag_s
|
|
if string match -qr "^-[A-z0-9]*"$s"[A-z0-9]*\$" -- $t
|
|
return 0
|
|
end
|
|
end
|
|
|
|
for l in $_flag_l
|
|
if string match -q -- "--$l" $t
|
|
return 0
|
|
end
|
|
end
|
|
end
|
|
|
|
return 1
|
|
end
|
|
|