mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 14:43:55 +08:00
2bfa7db7bc
Both are plenty fast enough, but this way the output of fish_trace isn't completely taken over by the loops (seems fair since fish_trace probably gets used rather heavily for completions).
11 lines
328 B
Fish
11 lines
328 B
Fish
#
|
|
# 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 regex (string escape --style=regex -- (commandline -pxc)[2..] | string join '|')
|
|
string match -rq -- '^'$regex'$' $argv
|
|
end
|