mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-27 06:31:19 -03:00
13 lines
363 B
Fish
13 lines
363 B
Fish
# localization: skip(private)
|
|
|
|
#
|
|
# Test to see if we've seen a subcommand from a list.
|
|
# This logic may seem backwards, but the commandline will often be much shorter
|
|
# than the list
|
|
#
|
|
|
|
function __fish_seen_subcommand_from
|
|
set -l regex (string escape --style=regex -- (commandline -pxc)[2..] | string join '|')
|
|
string match -rq -- "^($regex)\$" $argv
|
|
end
|