mirror of
https://github.com/zdharma-continuum/zconvey.git
synced 2026-09-10 07:06:21 -04:00
14 lines
257 B
Plaintext
14 lines
257 B
Plaintext
#compdef zc-take
|
|
|
|
local arguments
|
|
|
|
arguments=(
|
|
{-h,--help}'[this message]'
|
|
{-i,--id}'[(number) of Zsh session]:ID'
|
|
{-n,--name}'[NAME of Zsh session]:NAME'
|
|
{-q,--quiet}'[dont output status messages]'
|
|
'*:filename:_files'
|
|
)
|
|
|
|
_arguments -s $arguments
|