summaryrefslogtreecommitdiff
path: root/src/tty_interface.h
diff options
context:
space:
mode:
authorJohn Hawthorn <john.hawthorn@gmail.com>2016-06-20 01:45:09 -0700
committerJohn Hawthorn <john.hawthorn@gmail.com>2016-06-22 18:32:15 -0700
commitc73dad5d14740b48a2ba9e6d46472da22f6c1337 (patch)
treeefdcdf9f767809ef28428663a5f10761a94f505d /src/tty_interface.h
parent81e216e0da3d289da85e68e3d7369ca881e9c3bb (diff)
Use a struct to store keybindings
Diffstat (limited to 'src/tty_interface.h')
-rw-r--r--src/tty_interface.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tty_interface.h b/src/tty_interface.h
index bb53cfe..438cc55 100644
--- a/src/tty_interface.h
+++ b/src/tty_interface.h
@@ -15,6 +15,8 @@ typedef struct {
char search[SEARCH_SIZE_MAX + 1];
char last_search[SEARCH_SIZE_MAX + 1];
+ char input[32]; /* Pending input buffer */
+
int exit;
} tty_interface_t;