2021-11-25 07:30:44 +00:00
|
|
|
function __fish_seen_argument --description 'Check whether argument is used'
|
|
|
|
argparse 's/short=+' 'o/old=+' 'l/long=+' 'w/windows=+' -- $argv
|
2018-04-03 19:40:51 +00:00
|
|
|
|
2021-11-25 07:30:44 +00:00
|
|
|
set --local tokens (commandline --current-process --tokenize --cut-at-cursor)
|
|
|
|
set --erase tokens[1]
|
2022-01-27 06:02:23 +00:00
|
|
|
|
2021-11-25 07:30:44 +00:00
|
|
|
for t in $tokens
|
2019-05-05 10:09:25 +00:00
|
|
|
for s in $_flag_s
|
2021-11-25 07:30:44 +00:00
|
|
|
if string match --regex --quiet -- "^-[A-z0-9]*"$s"[A-z0-9]*\$" $t
|
2019-05-05 10:09:25 +00:00
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
2018-04-03 19:40:51 +00:00
|
|
|
|
2019-11-02 19:40:40 +00:00
|
|
|
for o in $_flag_o
|
2021-11-25 12:29:52 +00:00
|
|
|
if string match --quiet -- "-$o" $t
|
2019-11-02 19:40:40 +00:00
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
for l in $_flag_l
|
2021-11-25 07:30:44 +00:00
|
|
|
if string match --quiet -- "--$l" $t
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
for w in $_flag_w
|
|
|
|
if string match --quiet -- "/$w" $t
|
2019-05-05 10:09:25 +00:00
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-04-03 19:40:51 +00:00
|
|
|
|
2019-05-05 10:09:25 +00:00
|
|
|
return 1
|
2018-04-03 19:40:51 +00:00
|
|
|
end
|