zsh-workers
 help / color / mirror / code / Atom feed
From: Daniel Shahaf <d.s@daniel.shahaf.name>
To: zsh-workers@zsh.org
Subject: [PATCH] _add-zle-hook-widget: New completion.
Date: Sun, 17 Jul 2016 15:00:14 +0000	[thread overview]
Message-ID: <1468767614-9635-1-git-send-email-danielsh@tarsus.local2> (raw)
In-Reply-To: <160716185103.ZM5258@torch.brasslantern.com>

---
I wanted to use 'autoload +X add-zle-hook-widget; zstyle -g reply zle-hook
types' to avoid duplicating $hooktypes, but couldn't get it to work.  (Neither
with -k nor with -z was the style defined)

Daniel

 Completion/Zsh/Function/_add-zle-hook-widget | 34 ++++++++++++++++++++++++++++
 Functions/Zle/add-zle-hook-widget            |  1 +
 2 files changed, 35 insertions(+)
 create mode 100644 Completion/Zsh/Function/_add-zle-hook-widget

diff --git a/Completion/Zsh/Function/_add-zle-hook-widget b/Completion/Zsh/Function/_add-zle-hook-widget
new file mode 100644
index 0000000..40afb7e
--- /dev/null
+++ b/Completion/Zsh/Function/_add-zle-hook-widget
@@ -0,0 +1,34 @@
+#compdef add-zle-hook-widget
+
+local context state state_descr line
+typeset -A opt_args
+
+_add-zle-hook-widget_classes() {
+  local -a hooktypes=( zle-isearch-exit zle-isearch-update
+                     zle-line-pre-redraw zle-line-init zle-line-finish
+                     zle-history-line-set zle-keymap-select )
+                     # $hooktypes is duplicated in add-zle-hook-function itself, if you add entries update both places
+  compadd "$@" -a hooktypes
+}
+
+_add-zle-hook-widget_widgets() {
+  if (( $+opt_args[-d] )); then
+    local -a tmp
+    zstyle -g tmp $line[1] widgets
+    _wanted widgets expl "installed hooks" compadd -- ${tmp#<->:} && return 0
+  else
+    _wanted widgets expl widget compadd -M 'r:|-=* r:|=*' -k widgets && ret=0 && return 0
+  fi
+  return 1
+}
+
+_add-zle-hook-widget() {
+  _arguments -s -w -S : \
+    '(-D)-d[remove HOOK from the array]' \
+    '(-d)-D[interpret HOOK as pattern to remove from the array]' \
+    {-U,-z,-k}"[passed to 'autoload']" \
+    ':hook class:_add-zle-hook-widget_classes' \
+    ':widget:_add-zle-hook-widget_widgets'
+}
+
+_add-zle-hook-widget "$@"
diff --git a/Functions/Zle/add-zle-hook-widget b/Functions/Zle/add-zle-hook-widget
index cc2d54a..7f749b4 100644
--- a/Functions/Zle/add-zle-hook-widget
+++ b/Functions/Zle/add-zle-hook-widget
@@ -32,6 +32,7 @@ zmodload -e zsh/zle || return 1
 local -a hooktypes=( zle-isearch-exit zle-isearch-update
                      zle-line-pre-redraw zle-line-init zle-line-finish
                      zle-history-line-set zle-keymap-select )
+                     # $hooktypes is duplicated in _add-zle-hook-function, if you add entries update both places
 # Stash in zstyle to make it global
 zstyle zle-hook types ${hooktypes#zle-}
 


  reply	other threads:[~2016-07-17 15:00 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-04 10:40 Next release (5.3) Peter Stephenson
2016-07-04 15:04 ` Bart Schaefer
2016-07-05  6:00   ` Sebastian Gniazdowski
2016-07-05  6:33     ` Bart Schaefer
2016-07-05  8:33   ` Peter Stephenson
2016-07-05 11:48     ` Peter Stephenson
2016-07-05 16:29       ` Bart Schaefer
2016-07-07  2:00   ` Daniel Shahaf
2016-07-13  5:00     ` add-zle-hook-widget " Daniel Shahaf
2016-07-14  0:11       ` Bart Schaefer
2016-07-17  1:51         ` Bart Schaefer
2016-07-17 15:00           ` Daniel Shahaf [this message]
2016-07-17 19:21             ` [PATCH] _add-zle-hook-widget: New completion Bart Schaefer
2016-07-17 20:40               ` Bart Schaefer
2016-07-17 21:57             ` Bart Schaefer
2016-07-18  9:47             ` Oliver Kiddle
2016-07-18 15:30               ` Bart Schaefer
2016-07-19 10:30                 ` Oliver Kiddle
2016-07-19 17:58                   ` Bart Schaefer
2016-07-20  6:54               ` [PATCH v2] " Daniel Shahaf
2016-07-21 15:28                 ` Oliver Kiddle
2016-07-22  6:22                   ` Daniel Shahaf
2016-07-22 18:21                     ` Bart Schaefer
2016-07-22 18:45                     ` Oliver Kiddle
2016-07-23 18:03                       ` Daniel Shahaf
2016-07-17 14:59         ` add-zle-hook-widget Re: Next release (5.3) Daniel Shahaf
2016-07-17 18:48           ` Bart Schaefer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1468767614-9635-1-git-send-email-danielsh@tarsus.local2 \
    --to=d.s@daniel.shahaf.name \
    --cc=zsh-workers@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).