mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Restructure __fish_seen_subcommand_from
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).
This commit is contained in:
parent
11be48fc38
commit
2bfa7db7bc
1 changed files with 3 additions and 9 deletions
|
@ -5,12 +5,6 @@
|
|||
#
|
||||
|
||||
function __fish_seen_subcommand_from
|
||||
set -l cmd (commandline -pxc)
|
||||
set -e cmd[1]
|
||||
for i in $cmd
|
||||
if contains -- $i $argv
|
||||
return 0
|
||||
end
|
||||
end
|
||||
return 1
|
||||
set regex (string escape --style=regex -- (commandline -pxc)[2..] | string join '|')
|
||||
string match -rq -- '^'$regex'$' $argv
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue