summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input.c b/input.c
index e8918c9..e4c4672 100644
--- a/input.c
+++ b/input.c
@@ -97,5 +97,5 @@ void input(char *input) {
 		COMMANDS[i].handler(input);
 		return;
 	}
-	uiFmt("/%s isn't a recognized command", command);
+	uiFmt("%s isn't a recognized command", command);
 }
June McEnroe 2022-06-03Stop polling stdin after EOFJune McEnroe 2022-06-02Set TABSIZE=4June McEnroe 2022-06-02Do basic match highlightingJune McEnroe 2022-06-02Clean up parsing a littleJune McEnroe 2022-06-02Don't duplicate path stringJune McEnroe 2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe 2022-06-02Add initial working version of qfJune McEnroe 2022-05-29Set prompt for okshJune McEnroe