Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Bug in _stgit: stg series outputs to stdout
- X-seq: zsh-workers 30105
- From: Stepan Koltsov <yozh@xxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Bug in _stgit: stg series outputs to stdout
- Date: Mon, 9 Jan 2012 19:31:09 +0300
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- Sender: stepancheg@xxxxxx
Hi,
_stgit contains trivial bug: "stg delete" completion does not work.
--
Stepan
===
--- _stgit.orig 2010-02-17 22:41:09.000000000 +0300
+++ _stgit 2012-01-09 20:11:22.000000000 +0400
@@ -29,7 +29,7 @@
;;
(edit|files|goto|rename|log|float|delete|sink|mail|sync|show|pick|hide)
_wanted -V "patches" expl "patch" \
- compadd $(stg series --noprefix > /dev/null) \
+ compadd $(stg series --noprefix 2> /dev/null) \
&& ret=0
;;
(*)
===
Messages sorted by:
Reverse Date,
Date,
Thread,
Author