about summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'input.c')
-rw-r--r--input.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/input.c b/input.c
index cb0a12c..c6ceb88 100644
--- a/input.c
+++ b/input.c
@@ -178,7 +178,14 @@ void input(struct Tag tag, char *input) {
 		COMMANDS[i].handler(tag, input);
 		return;
 	}
-	uiFmt(TAG_STATUS, UI_WARM, "%s isn't a recognized command", command);
+
+	char *trail;
+	strtol(&command[1], &trail, 0);
+	if (!trail[0]) {
+		inputView(tag, &command[1]);
+	} else {
+		uiFmt(TAG_STATUS, UI_WARM, "%s isn't a recognized command", command);
+	}
 }
 
 void inputTab(void) {
5c2ea0dfc6b17ac1217785319088d6f50f39c&follow=1'>Import /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