mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 04:58:57 +00:00
correct __fish_contains_opts to __fish_contains_opt (#3102)
Completion throws and error about the command `__fish_contains_opts` beings unknown. It seems to be a simple typo, as all other completions use `__fish_contains_opt`
This commit is contained in:
parent
8d11bb9f86
commit
29c38d73a2
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ set -l upgrade '__fish_contains_opt -s U upgrade'
|
|||
set -l aur '__fish_contains_opt -s A aursync'
|
||||
set -l abs '__fish_contains_opt -s M abssync'
|
||||
set -l save '__fish_contains_opt -s B save'
|
||||
set -l downgrade '__fish_contains_opts -s C downgrade'
|
||||
set -l downgrade '__fish_contains_opt -s C downgrade'
|
||||
set -l orphans '__fish_contains_opt -s O orphans'
|
||||
set -l logfile '__fish_contains_opt -s L viewlog'
|
||||
set -l search '__fish_contains_opt -s s search'
|
||||
|
|
Loading…
Reference in a new issue