summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora <nora.widdecke@tu-bs.de>2019-02-25 00:36:26 +0100
committerNora <nora.widdecke@tu-bs.de>2019-02-25 00:36:26 +0100
commit4ef38c46d55b08d49375adcbcde8211714019c4b (patch)
treef925db504c21115f0e01c433a4b7c6754370b8b2
parent0a32439dcd0b8e4f82a31d7e24692bee56649b69 (diff)
remove author lines from help
-rw-r--r--src/cli.rs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 6dcab38..3470bf5 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -3,7 +3,7 @@ use std::path::PathBuf;
#[derive(Debug, StructOpt)]
#[structopt(
- author = "me",
+ author = "",
name = "khalessi",
about = "Command line calendar tool."
)]
@@ -18,43 +18,43 @@ pub struct CommandLine {
#[derive(Debug, StructOpt)]
pub enum Command {
/// Show agenda view
- #[structopt(name = "agenda")]
+ #[structopt(name = "agenda", author = "")]
Agenda(Agenda),
/// Copy event
- #[structopt(name = "copy")]
+ #[structopt(name = "copy", author = "")]
Copy,
/// Interact with the cursor
- #[structopt(name = "cursor")]
+ #[structopt(name = "cursor", author = "")]
Cursor(Cursor),
/// Delete event
- #[structopt(name = "delete")]
+ #[structopt(name = "delete", author = "")]
Delete,
/// Edit event
- #[structopt(name = "edit")]
+ #[structopt(name = "edit", author = "")]
Edit,
/// Rebuild index
- #[structopt(name = "index")]
+ #[structopt(name = "index", author = "")]
Index(Index),
/// Select from the sequence
- #[structopt(name = "list")]
+ #[structopt(name = "list", author = "")]
List(List),
/// Create new event
- #[structopt(name = "new")]
+ #[structopt(name = "new", author = "")]
New(New),
/// Select from the index
- #[structopt(name = "select")]
+ #[structopt(name = "select", author = "")]
Select(Select),
/// Interact with the sequence
- #[structopt(name = "seq")]
+ #[structopt(name = "seq", author = "")]
Seq,
/// Show the raw ical file of an event
- #[structopt(name = "show")]
+ #[structopt(name = "show", author = "")]
Show,
/// undo the most recent action
- #[structopt(name = "undo")]
+ #[structopt(name = "undo", author = "")]
Undo,
/// Unroll a recurring event
- #[structopt(name = "unroll")]
+ #[structopt(name = "unroll", author = "")]
Unroll(Unroll),
}