share/completions: fix non-standard capitalization.

Use "Installed package" instead of "Installed Package".
This commit is contained in:
Érico Rolim 2020-11-13 02:32:51 -03:00 committed by Fabian Homborg
parent 3873d68593
commit 943ead2598
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ end
# Setup additional completion
complete -f -c eopkg -n '__fish_seen_subcommand_from remove-repo rr enable-repo er disable-repo dr list-available la' -a "(__fish_eopkg_print_repos)" -d Repository
complete -f -c eopkg -n '__fish_seen_subcommand_from upgrade up install it info' -a "(__fish_print_packages)" -d "Available Package"
complete -f -c eopkg -n '__fish_seen_subcommand_from remove rm autoremove rmf check' -a "(__fish_print_packages --installed)" -d "Installed Package"
complete -f -c eopkg -n '__fish_seen_subcommand_from remove rm autoremove rmf check' -a "(__fish_print_packages --installed)" -d "Installed package"
complete -f -c eopkg -n '__fish_seen_subcommand_from upgrade up remove rm install it info check list-available la list-installed li list-upgrades lu' -s c -l component -a "(__fish_eopkg_print_components)" -d Component
# Setup eopkg subcommand with shortcut

View File

@ -51,4 +51,4 @@ complete -c portmaster -f -d 'Ports Directory' -a "
string match -r '(?<=/usr/ports/)[^/]*(?:/[^/]*)?' (__fish_complete_directories /usr/ports/(commandline -ct))
)"
complete -c portmaster -f -d 'Installed Package' -a "(__fish_print_packages)"
complete -c portmaster -f -d 'Installed package' -a "(__fish_print_packages)"