aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-10-26 17:46:33 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-10-26 17:46:33 +0000
commitfd2ef18a7004fb35dbe40b99765609189827a6f8 (patch)
tree4ba4edcda169febe60a64950f764f8fbfd1596f5 /tmux.h
parentc92c2bfb10d9c94acf0d453d9b4e71d6d696e8af (diff)
downloadrtmux-fd2ef18a7004fb35dbe40b99765609189827a6f8.tar.gz
rtmux-fd2ef18a7004fb35dbe40b99765609189827a6f8.tar.bz2
rtmux-fd2ef18a7004fb35dbe40b99765609189827a6f8.zip
Rewrite xterm-keys code (both input and output) so that works (doesn't always
output the same modifiers, accepts all the possible input keys) and is more understandable.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 5bc509c5..bc62c813 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1642,6 +1642,10 @@ void input_parse(struct window_pane *);
void input_key(struct window_pane *, int);
void input_mouse(struct window_pane *, struct mouse_event *);
+/* xterm-keys.c */
+char *xterm_keys_lookup(int);
+int xterm_keys_find(const char *, size_t, size_t *);
+
/* colour.c */
void colour_set_fg(struct grid_cell *, int);
void colour_set_bg(struct grid_cell *, int);