Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 3/5] _hg: add forget, phase, summary
- X-seq: zsh-workers 43238
- From: Anton Shestakov <av6@xxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 3/5] _hg: add forget, phase, summary
- Date: Mon, 6 Aug 2018 15:28:11 +0800
- Cc: Anton Shestakov <av6@xxxxxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=dwimlabs.net; s=20171204; t=1533540507; bh=VLd21BXpZnyengVAkvoQW7HWjZScUErf4KCNzR87rRA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=k/CdKVXTDeTtpprvOOjeY1fJuAkL8RZ2Z8y17Cn0EdENHv16ZOjGL3lRnzTHBP781 4gPvyzOryQGa0T5TrHrvLfGO+cGqFoM9Tb9FcBbpX3Lw2yHoTywrcndSaYF2NaLLxY dJsZnbOSHoaJ+aHTK2FZeC0ov68abOMfUvw4PCp8=
- In-reply-to: <20180806072813.5051-1-av6@dwimlabs.net>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <20180806072813.5051-1-av6@dwimlabs.net>
---
Completion/Unix/Command/_hg | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/Completion/Unix/Command/_hg b/Completion/Unix/Command/_hg
index 693e0c4bd..9ae49e3ad 100644
--- a/Completion/Unix/Command/_hg
+++ b/Completion/Unix/Command/_hg
@@ -552,6 +552,11 @@ _hg_cmd_export() {
'*:revision:_hg_tags'
}
+_hg_cmd_forget() {
+ _arguments -s : $_hg_global_opts $_hg_pat_opts \
+ '*:file:_hg_files'
+}
+
_hg_cmd_grep() {
_arguments -s : $_hg_global_opts $_hg_pat_opts \
'(--print0 -0)'{-0,--print0}'[end filenames with NUL]' \
@@ -666,6 +671,16 @@ _hg_cmd_paths() {
':path:_hg_paths'
}
+_hg_cmd_phase() {
+ _arguments -s : $_hg_global_opts \
+ '(--public -p --draft -d --secret -s)'{-p,--public}'[set changeset phase to public]' \
+ '(--public -p --draft -d --secret -s)'{-d,--draft}'[set changeset phase to draft]' \
+ '(--public -p --draft -d --secret -s)'{-s,--secret}'[set changeset phase to secret]' \
+ '(--force -f)'{-f,--force}'[allow to move boundary backward]' \
+ '*'{-r+,--rev=}'[target revision]:revision:_hg_tags' \
+ '*:revision:_hg_tags'
+}
+
_hg_cmd_pull() {
_arguments -s : $_hg_global_opts $_hg_remote_opts \
'(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
@@ -776,6 +791,11 @@ _hg_cmd_status() {
'*:files:_files'
}
+_hg_cmd_summary() {
+ _arguments -s : $_hg_global_opts \
+ '--remote[check for push and pull]'
+}
+
_hg_cmd_tag() {
_arguments -s : $_hg_global_opts \
'(--local -l)'{-l,--local}'[make the tag local]' \
--
2.11.0
Messages sorted by:
Reverse Date,
Date,
Thread,
Author