mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 05:29:43 +08:00
bd5f9babd7
Regression from 2bfa7db7bc
Can be triggered e.g. with `complete -C"history "`.
11 lines
331 B
Fish
11 lines
331 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 -l regex (string escape --style=regex -- (commandline -pxc)[2..] | string join '|')
|
|
string match -rq -- "^$regex"'$' $argv
|
|
end
|