mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-07-11 04:41:32 +02:00
github #137: completion: add cacaclock (caca-utils)
with minor tweaks to fix things lost when addressing feedback
This commit is contained in:
parent
8720885648
commit
454bc91dea
2 changed files with 16 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2025-05-25 dana <dana@dana.is>
|
||||
|
||||
* github #137 (tweaked): Christopher Bock:
|
||||
Completion/Unix/Command/_cacaclock: completion: add cacaclock
|
||||
(caca-utils)
|
||||
|
||||
2025-05-24 dana <dana@dana.is>
|
||||
|
||||
* 53662: Test/K02parameter.ztst: add extra namespace tests
|
||||
|
|
10
Completion/Unix/Command/_cacaclock
Normal file
10
Completion/Unix/Command/_cacaclock
Normal file
|
@ -0,0 +1,10 @@
|
|||
#compdef cacaclock
|
||||
|
||||
local -a arguments=(
|
||||
'(-d --dateformat)'{-d+,--dateformat=}'[use specified format as strftime argument]: :_date_formats'
|
||||
'(-f --font)'{-f+,--font=}'[use specified font for time display]:font file:_files -g "/usr/share/figlet/*.tlf"'
|
||||
'(-)'{-h,--help}'[display usage help]'
|
||||
'(-)'{-v,--version}'[display version information]'
|
||||
)
|
||||
|
||||
_arguments $arguments
|
Loading…
Reference in a new issue