mirror of
https://github.com/zdharma-continuum/zconvey.git
synced 2026-09-10 07:06:21 -04:00
15 lines
380 B
Plaintext
15 lines
380 B
Plaintext
#compdef zc-bg-notify
|
|
|
|
local arguments
|
|
|
|
arguments=(
|
|
{-h,--help}'[this message]'
|
|
{-q,--quiet}'[dont output status messages about target sessions]'
|
|
{-v,--verbose}'[output more status messages]'
|
|
{-a,--ask}'[ask for notification text (if not provided)]'
|
|
{-f,--force}'[send also to busy sessions; notification can time-out]'
|
|
'*:filename:_files'
|
|
)
|
|
|
|
_arguments -s $arguments
|