From c61a927d1d156731d9e21c714dfea9585163c556 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Thu, 28 Aug 2014 11:33:53 +0200 Subject: 33061: More useful setopt / unsetopt completion --- Completion/Zsh/Command/_setopt | 22 ++++++++++++++-------- Completion/Zsh/Command/_unsetopt | 10 ---------- 2 files changed, 14 insertions(+), 18 deletions(-) delete mode 100644 Completion/Zsh/Command/_unsetopt (limited to 'Completion/Zsh') diff --git a/Completion/Zsh/Command/_setopt b/Completion/Zsh/Command/_setopt index f72c20dda..fb38d1da6 100644 --- a/Completion/Zsh/Command/_setopt +++ b/Completion/Zsh/Command/_setopt @@ -1,10 +1,16 @@ -#compdef setopt +#compdef setopt unsetopt -# If you first want to complete only unset options, un-comment the lines -# setting the _options_unset array and then use: -# -# _options_unset || _options -# -# here. +local expl ret=1 +local -a onopts offopts +onopts=( ${(k)_comp_caller_options[(R)on]} ) +offopts=( ${(k)_comp_caller_options[(R)off]} ) +case $service in + setopt) onopts=(no$onopts) ;; + unsetopt) offopts=(no$offopts) ;; +esac +_wanted zsh-options expl 'zsh options (set)' \ + compadd -J 'enabled options' -M 'M:_= M:{A-Z}={a-z}' -k - onopts && ret=0 +_wanted zsh-options expl 'zsh options (unset)' \ + compadd -J 'disabled options' -M 'M:_= M:{A-Z}={a-z}' -k - offopts && ret=0 -_options +return ret diff --git a/Completion/Zsh/Command/_unsetopt b/Completion/Zsh/Command/_unsetopt deleted file mode 100644 index 75a33e9dd..000000000 --- a/Completion/Zsh/Command/_unsetopt +++ /dev/null @@ -1,10 +0,0 @@ -#compdef unsetopt - -# If you first want to complete only unset options, uncomment the lines -# setting the _options_set array and then use: -# -# _options_set || _options -# -# here. - -_options -- cgit 1.4.1