aboutsummaryrefslogtreecommitdiff
path: root/completion
diff options
context:
space:
mode:
Diffstat (limited to 'completion')
-rw-r--r--completion/zsh-completion.zsh11
1 files changed, 11 insertions, 0 deletions
diff --git a/completion/zsh-completion.zsh b/completion/zsh-completion.zsh
new file mode 100644
index 0000000..26116d2
--- /dev/null
+++ b/completion/zsh-completion.zsh
@@ -0,0 +1,11 @@
+#compdef ponysay
+_shortopts=(
+ '-v[Show version and exit]'
+ '-h[Show this help and exit]'
+ '-l[list ponyfiles]'
+ '-f[Select a pony (either a filename or a ponyname]: :_path_files -W "/usr/share/ponies" -g "*(\:r)"'
+ '-W[The screen column where the message should be wrapped]'
+ )
+_arguments -s : \
+ "$_shortopts[@]"
+