summaryrefslogtreecommitdiffstats
path: root/src/issues.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/issues.rs')
-rw-r--r--src/issues.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/issues.rs b/src/issues.rs
index 130a1ef..f2a97ee 100644
--- a/src/issues.rs
+++ b/src/issues.rs
@@ -23,25 +23,28 @@ pub enum IssueSubcommand {
title: String,
#[clap(long)]
body: Option<String>,
- #[clap(long, short)]
+ #[clap(long, short, id = "[HOST/]OWNER/REPO")]
repo: Option<RepoArg>,
},
Edit {
+ #[clap(id = "[REPO#]ID")]
issue: IssueId,
#[clap(subcommand)]
command: EditCommand,
},
Comment {
+ #[clap(id = "[REPO#]ID")]
issue: IssueId,
body: Option<String>,
},
Close {
+ #[clap(id = "[REPO#]ID")]
issue: IssueId,
#[clap(long, short)]
with_msg: Option<Option<String>>,
},
Search {
- #[clap(long, short)]
+ #[clap(long, short, id = "[HOST/]OWNER/REPO")]
repo: Option<RepoArg>,
query: Option<String>,
#[clap(long, short)]
@@ -54,11 +57,13 @@ pub enum IssueSubcommand {
state: Option<State>,
},
View {
+ #[clap(id = "[REPO#]ID")]
id: IssueId,
#[clap(subcommand)]
command: Option<ViewCommand>,
},
Browse {
+ #[clap(id = "[REPO#]ID")]
id: IssueId,
},
}