12 lines
174 B
Plaintext
12 lines
174 B
Plaintext
#compdef cptemplate
|
|
|
|
# ========== Completions ==========
|
|
local arguments
|
|
|
|
arguments=(
|
|
{-h,--help}'[print this help page]'
|
|
'*:filename:_files'
|
|
)
|
|
|
|
_arguments -s $arguments
|