From 4c3c8bcd1089a60a60a76184dbafd1c242e7038e Mon Sep 17 00:00:00 2001 From: Joe Bloggs Date: Fri, 28 Mar 2014 20:58:12 +0000 Subject: [PATCH] update --- zsh-completions-howto.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh-completions-howto.org b/zsh-completions-howto.org index 32350a6..34fa070 100644 --- a/zsh-completions-howto.org +++ b/zsh-completions-howto.org @@ -396,7 +396,7 @@ Remember to put a null char $'\0' at the end of any PATTERN argument for _regex_ Sometimes you have a situation where there is just one option that can come after a subcommand, and zsh will complete this automatically when tab is pressed after the subcommand. If instead you want it listed with its description before completing you can add another empty option (i.e. \:) to the ACTION like this ':TAG:DESCRIPTION:((opt1\:"description for opt1" \:))' -Note this only applies to utility functions that use ACTIONs in their specification arguments. +Note this only applies to utility functions that use ACTIONs in their specification arguments (_arguments, _regex_arguments, etc.) * Other resources [[http://wikimatze.de/writing-zsh-completion-for-padrino.html][Here]] is a nicely formatted short tutorial showing basic usage of the _arguments function,