mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
Add repo completion for zypper (#4325)
* Add repo completion for zypper * Replace sed with string in __fish_print_zypp_repos * Move function into completion script * Update zypper completion add subcommand packages to __fish_zypper_repo_commands
This commit is contained in:
parent
76609de4da
commit
81becc5f6b
1 changed files with 14 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
|||
# completion for zypper
|
||||
|
||||
set -g __fish_zypper_all_commands shell sh repos lr addrepo ar removerepo rr renamerepo nr modifyrepo mr refresh ref clean services ls addservice as modifyservice ms removeservice rs refresh-services refs install in remove rm verify ve source-install si install-new-recommends inr update up list-updates lu patch list-patches lp dist-upgrade dup patch-check pchk search se info if patch-info pattern-info product-info patches pch packages pa patterns pt products pd what-provides wp addlock al removelock rl locks ll cleanlocks cl versioncmp vcmp targetos tos licenses source-download
|
||||
set -g __fish_zypper_all_commands shell sh repos lr addrepo ar removerepo rr renamerepo nr modifyrepo mr refresh ref clean cc services ls addservice as modifyservice ms removeservice rs refresh-services refs install in remove rm verify ve source-install si install-new-recommends inr update up list-updates lu patch list-patches lp dist-upgrade dup patch-check pchk search se info if patch-info pattern-info product-info patches pch packages pa patterns pt products pd what-provides wp addlock al removelock rl locks ll cleanlocks cl versioncmp vcmp targetos tos licenses source-download
|
||||
set -g __fish_zypper_pkg_commands in install rm remove info if addlock al removelock rl source-install si
|
||||
set -g __fish_zypper_repo_commands repos lr addrepo ar removerepo rr renamerepo nr modifyrepo mr refresh ref clean cc packages pa
|
||||
|
||||
function __fish_zypper_cmd_in_array
|
||||
for i in (commandline -pco)
|
||||
|
@ -23,7 +24,18 @@ function __fish_zypper_use_pkg
|
|||
__fish_zypper_cmd_in_array $__fish_zypper_pkg_commands
|
||||
end
|
||||
|
||||
function __fish_zypper_use_repo
|
||||
__fish_zypper_cmd_in_array $__fish_zypper_repo_commands
|
||||
end
|
||||
|
||||
function __fish_zypper_print_repos
|
||||
for repofile in /etc/zypp/repos.d/*.repo
|
||||
string replace -f -r '\[(.+)\]' '$1' < $repofile
|
||||
end
|
||||
end
|
||||
|
||||
complete -n '__fish_zypper_use_pkg' -c zypper -a '(__fish_print_packages)' --description 'Package'
|
||||
complete -f -n '__fish_zypper_use_repo' -c zypper -a '(__fish_zypper_print_repos)' --description 'Repo'
|
||||
|
||||
complete -n '__fish_zypper_no_subcommand' -c zypper -a 'install in' --description 'Install packages'
|
||||
|
||||
|
@ -35,7 +47,7 @@ complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'removerepo rr'
|
|||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'renamerepo nr' --description 'Rename specified repository'
|
||||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'modifyrepo mr' --description 'Modify specified repository'
|
||||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'refresh ref' --description 'Refresh all repositories'
|
||||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'clean' --description 'Clean local caches'
|
||||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'clean cc' --description 'Clean local caches'
|
||||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'services ls' --description 'List all defined services'
|
||||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'addservice as' --description 'Add a new service'
|
||||
complete -f -n '__fish_zypper_no_subcommand' -c zypper -a 'modifyservice ms' --description 'Modify specified service'
|
||||
|
|
Loading…
Reference in a new issue