zsh-workers
 help / color / mirror / code / Atom feed
* [PATCH] _widgets: Complete zle-* widgets too.
@ 2016-07-30 13:11 Daniel Shahaf
  2016-07-30 14:40 ` Bart Schaefer
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Shahaf @ 2016-07-30 13:11 UTC (permalink / raw)
  To: zsh-workers

---
 Completion/Zsh/Type/_widgets | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Completion/Zsh/Type/_widgets b/Completion/Zsh/Type/_widgets
index fdab281..0e7f491 100644
--- a/Completion/Zsh/Type/_widgets
+++ b/Completion/Zsh/Type/_widgets
@@ -2,8 +2,14 @@
 
 local expl pattern
 
+local -a fake
+autoload -U add-zle-hook-widget
+add-zle-hook-widget -h >&/dev/null # sets the zstyle
+zstyle -g fake zle-hook types
+fake=( zle-${^fake} )
+
 pattern=( -g \* )
 zparseopts -D -K -E g:=pattern
 
 _description widgets expl widget
-compadd "$@" "$expl[@]" -M 'r:|-=* r:|=*' - "${(@k)widgets[(R)${pattern[2]}]}"
+compadd "$@" "$expl[@]" -M 'r:|-=* r:|=*' - "${(@k)widgets[(R)${pattern[2]}]}" "${(@M)fake:#${~pattern[2]}}"


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

end of thread, other threads:[~2016-07-31 16:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-30 13:11 [PATCH] _widgets: Complete zle-* widgets too Daniel Shahaf
2016-07-30 14:40 ` Bart Schaefer
2016-07-31 16:18   ` Daniel Shahaf

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).