diff options
author | 2014-08-25 23:04:21 +0700 | |
---|---|---|
committer | 2014-08-25 23:11:25 +0700 | |
commit | 22f2f1fae54d9242b2e9a2fbc49918f1dbe6edbb (patch) | |
tree | 9a969a1e85cb337ff7286250b944ee9700c47975 | |
parent | _openrc: remove vim/emacs formatting definitions (diff) | |
download | zsh-completion-22f2f1fae54d9242b2e9a2fbc49918f1dbe6edbb.tar.gz zsh-completion-22f2f1fae54d9242b2e9a2fbc49918f1dbe6edbb.tar.bz2 zsh-completion-22f2f1fae54d9242b2e9a2fbc49918f1dbe6edbb.zip |
_eselect: news fix (typo in regexp)
Signed-off-by: Vadim A. Misbakh-Soloviov <mva@mva.name>
-rw-r--r-- | _eselect | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ _eselect_news() { _values -w 'news' 'new[Count only new news items]' 'all[Count all news items]' && return 0 fi - newslist=(${${${${${${${(M)${(f)"$(eselect --color=no news list)"}## *}// \**/}/ \[/}/\] ##/\[}/%/]}/ \[/ (}/\] /) }) + newslist=(${${${${${${${(M)${(f)"$(eselect --color=no news list)"}## *}// \**/}/ \[/}/\] ##/\[}/%/]}/ \[/ (}/\] /) }) if (( $words[(I)(read)] )); then newslist+=( "new[Read unread news items (default)]" "all[Read all news items]" "--mbox[Output in mbox format]" "--quiet[Suppress output, only change status]" "--raw[Output in raw format]" ) |