aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2017-12-24 23:31:04 -0800
committeriximeow <me@iximeow.net>2017-12-24 23:31:04 -0800
commita97fab4894f1a4c4c80cc41db67b60daa50c5f4a (patch)
treee5715b3166aff24d07719b2fe8acf286f2e1508f
parent9df06af16276e3c002516836b4851be4e6e6c993 (diff)
fix bug where no-param commands would only be accepted with an empty line following
-rw-r--r--src/tw/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tw/mod.rs b/src/tw/mod.rs
index f9fda69..2eb574f 100644
--- a/src/tw/mod.rs
+++ b/src/tw/mod.rs
@@ -535,6 +535,8 @@ fn parse_word_command<'a, 'b>(line: &'b str, commands: &[&'a Command]) -> Option
if cmd.params == 0 {
if line == cmd.keyword {
return Some(("", &cmd));
+ } else if line.starts_with(&format!("{} ", cmd.keyword)) {
+ return Some((line.get((cmd.keyword.len() + 1)..).unwrap().trim(), &cmd));
}
} else if line.starts_with(cmd.keyword) {
if line.find(" ").map(|x| x == cmd.keyword.len()).unwrap_or(false) {