From d1a33a3a167d47541561ca9597d2d5f28431605f Mon Sep 17 00:00:00 2001 From: Andy Wortman Date: Sat, 11 Nov 2017 16:51:39 -0800 Subject: add a little more help info, describe tweets/compose mode/commands --- src/commands/thread.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/commands/thread.rs') diff --git a/src/commands/thread.rs b/src/commands/thread.rs index 0897b21..71d0e52 100644 --- a/src/commands/thread.rs +++ b/src/commands/thread.rs @@ -10,7 +10,8 @@ pub static FORGET_THREAD: Command = Command { keyword: "forget", params: 1, exec: forget, - help_str: ": Discard thread known by . Entirely local to the client." + param_str: " ", + help_str: "Discard thread known by . Entirely local to the client." }; fn forget(line: String, tweeter: &mut tw::TwitterCache, _queryer: &mut Queryer) { @@ -22,7 +23,8 @@ pub static REMEMBER_THREAD: Command = Command { keyword: "remember", params: 2, exec: remember, - help_str: " : Remember the thread tipped by as . Entirely local to the client." + param_str: " ", + help_str: "Remember the thread tipped by as . Entirely local to the client." }; fn remember(line: String, tweeter: &mut tw::TwitterCache, _queryer: &mut Queryer) { @@ -54,6 +56,7 @@ pub static LIST_THREADS: Command = Command { keyword: "ls_threads", params: 0, exec: ls_threads, + param_str: "", help_str: "Show all known (local) threads" }; -- cgit v1.1