zsh-workers
 help / color / mirror / code / Atom feed
* _arguments: normal arg spec with empty action
@ 2016-10-18 13:35 Jun T.
  2016-10-21  6:31 ` Oliver Kiddle
  2016-11-03 23:53 ` Oliver Kiddle
  0 siblings, 2 replies; 5+ messages in thread
From: Jun T. @ 2016-10-18 13:35 UTC (permalink / raw)
  To: zsh-workers

If I type

zsh% awk -<TAB>

then it shows the list of options (-F -f -v), as expected.
But if I hit <TAB> again, it does not cycle through the options.

It seems this is caused by the empty action in the spec:
	'1:program text:'
Adding a space ('1:program text: ') does not work.

The following patch fixes the problem, but is this the best way to go?


diff --git a/Completion/Unix/Command/_awk b/Completion/Unix/Command/_awk
index c493c3b..1645048 100644
--- a/Completion/Unix/Command/_awk
+++ b/Completion/Unix/Command/_awk
@@ -17,5 +17,5 @@
 _arguments -S -s '-F+[define input field separator to be an extended regular expression]:extended regular expression:' \
     '*-v+[assign values to variables]:assignment:' \
     '(1)-f+[program file]:program file:_files' \
-    '1:program text:' \
+    '1: : _message "program text"' \
     '*:input files:_files'



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-15  0:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-18 13:35 _arguments: normal arg spec with empty action Jun T.
2016-10-21  6:31 ` Oliver Kiddle
2016-10-21 11:12   ` Jun T.
2016-11-03 23:53 ` Oliver Kiddle
2016-11-15  0:31   ` Oliver Kiddle

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).