mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
github #131: completion: add debmany, dhomepage, dpkg-info, which-pkg-broke
dhomepage tweaked by dana
This commit is contained in:
parent
2a3b09d669
commit
abced20c0a
5 changed files with 31 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
2025-06-05 dana <dana@dana.is>
|
||||
|
||||
* Christopher Bock: github #131:
|
||||
Completion/Debian/Command/_debmany,
|
||||
Completion/Debian/Command/_dhomepage,
|
||||
Completion/Debian/Command/_dpkg-info,
|
||||
Completion/Debian/Command/_which-pkg-broke: complete debmany,
|
||||
dhomepage, dpkg-info, which-pkg-broke
|
||||
|
||||
2025-06-04 dana <dana@dana.is>
|
||||
|
||||
* bryango: github #138: Completion/Darwin/Command/_networksetup:
|
||||
|
|
3
Completion/Debian/Command/_debmany
Normal file
3
Completion/Debian/Command/_debmany
Normal file
|
@ -0,0 +1,3 @@
|
|||
#compdef debmany
|
||||
|
||||
_deb_packages avail
|
13
Completion/Debian/Command/_dhomepage
Normal file
13
Completion/Debian/Command/_dhomepage
Normal file
|
@ -0,0 +1,13 @@
|
|||
#compdef dhomepage
|
||||
|
||||
local arguments
|
||||
|
||||
arguments=(
|
||||
'(-v --vcs)'{-v,--vcs}'[open VCS homepage instead]'
|
||||
'(-e --echo)'{-e,--echo}'[only print URL]'
|
||||
'(- : *)'{-h,--help}'[show help]'
|
||||
'(- : *)--version[show version information]'
|
||||
':package:_deb_packages avail'
|
||||
)
|
||||
|
||||
_arguments -A '-*' : $arguments
|
3
Completion/Debian/Command/_dpkg-info
Normal file
3
Completion/Debian/Command/_dpkg-info
Normal file
|
@ -0,0 +1,3 @@
|
|||
#compdef dpkg-info
|
||||
|
||||
_deb_packages avail
|
3
Completion/Debian/Command/_which-pkg-broke
Normal file
3
Completion/Debian/Command/_which-pkg-broke
Normal file
|
@ -0,0 +1,3 @@
|
|||
#compdef which-pkg-broke
|
||||
|
||||
_deb_packages avail
|
Loading…
Reference in a new issue