summary refs log tree commit diff
path: root/input.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--input.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/input.c b/input.c
index e4c4672..0ac64f5 100644
--- a/input.c
+++ b/input.c
@@ -99,3 +99,9 @@ void input(char *input) {
 	}
 	uiFmt("%s isn't a recognized command", command);
 }
+
+void inputTab(void) {
+	for (size_t i = 0; i < COMMANDS_LEN; ++i) {
+		tabTouch(COMMANDS[i].command);
+	}
+}