From e4f6fad70dc25c80f3c11ee52d83ea37b20620e9 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Wed, 23 Oct 2019 03:00:00 -0400 Subject: Fix rest parsing --- state.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state.c b/state.c index da777da..ecbf368 100644 --- a/state.c +++ b/state.c @@ -136,7 +136,7 @@ void stateParse(char *line) { cmd.name = strsep(&line, " "); for (size_t i = 0; line && i < ParamCap; ++i) { if (line[0] == ':') { - cmd.params[i] = line; + cmd.params[i] = &line[1]; break; } cmd.params[i] = strsep(&line, " "); -- cgit 1.4.1 .submit();'> dontfiles
summary refs log tree commit diff
path: root/home/.config/nvim (unfollow)
Commit message (Expand)Author
2019-01-13Change default ENV from cashrc to env.shJune McEnroe
2019-01-13Use colours in cash promptsJune McEnroe
2019-01-12Set PSlit like NetBSD shJune McEnroe
2019-01-12Install gnupg2 from pkgsrc and symlink gpgJune McEnroe
2019-01-12Reference cash builtin man pages in cash.1 SEE ALSOJune McEnroe
2019-01-12Restore cash builtin man page datesJune McEnroe
2019-01-12Use local libeditJune McEnroe
2019-01-12Replace libedit MakefileJune McEnroe
2019-01-11Import /usr/src/lib/libedit from NetBSD 8.0June McEnroe
2019-01-11Add PSlit for prompt escapesJune McEnroe
2019-01-11Don't make depend automaticallyJune McEnroe