aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wortman <ixineeringeverywhere@gmail.com>2017-12-24 23:32:49 -0800
committerGitHub <noreply@github.com>2017-12-24 23:32:49 -0800
commit27bf6925db5fed3936e03a197bf256ac3e860a0b (patch)
treee5715b3166aff24d07719b2fe8acf286f2e1508f
parent575b6858a5849547acfe43a783ef03146a373215 (diff)
parent08783c91b6f9cee2c2586891da7ed3ceed5d3cb5 (diff)
Merge pull request #4 from iximeow/command-fix
Command fix
-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) {