mirror of
https://github.com/zdharma-continuum/zconvey.git
synced 2026-09-10 07:06:21 -04:00
17 lines
445 B
Plaintext
17 lines
445 B
Plaintext
#compdef zc
|
|
|
|
local arguments
|
|
|
|
arguments=(
|
|
{-h,--help}'[this message]'
|
|
{-i,--id}'[ID (number) of Zsh session]:ID'
|
|
{-n,--name}'[NAME of Zsh session]:NAME'
|
|
{-q,--quiet}'[dont output status messages]'
|
|
{-v,--verbose}'[output more status messages]'
|
|
{-a,--ask}'[ask for command (if not provided) and session (etc.)]'
|
|
{-r,--raw}'[raw input (for scripts) - a quoted string, e.g. ls a dir]'
|
|
'*:filename:_files'
|
|
)
|
|
|
|
_arguments -s $arguments
|