From 48553f56d180ed9f1b2a07549fbe3a8ad7bd7050 Mon Sep 17 00:00:00 2001 From: Joe Bloggs Date: Wed, 26 Mar 2014 02:21:58 +0000 Subject: [PATCH] update --- zsh-completions-howto.org | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh-completions-howto.org b/zsh-completions-howto.org index 289a46c..2182698 100644 --- a/zsh-completions-howto.org +++ b/zsh-completions-howto.org @@ -182,6 +182,7 @@ With the _arguments function you can create much more sophisticated completion f Like the _alternative function, _arguments takes a list of specification strings as arguments. These specification strings can be for specifying options and any corresponding option arguments (e.g. -f filename), or command arguments. + Basic option specifications take the form '-OPT[DESCRIPTION]', e.g. like this: #+BEGIN_SRC sh _arguments '-s[sort output]' '--l[long output]' '-l[long output]'