aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-10-28 23:03:51 +0000
committerTiago Cunha <tcunha@gmx.com>2009-10-28 23:03:51 +0000
commit10aab825394541df3140bcb4e49b6a0e05997f8e (patch)
treeb0ba5299ce34c894fa2f8f62e947fdff7138b1cb /tmux.h
parent1c4b7d33b156abeb019ecf19c320b5af1c8ccdfa (diff)
downloadrtmux-10aab825394541df3140bcb4e49b6a0e05997f8e.tar.gz
rtmux-10aab825394541df3140bcb4e49b6a0e05997f8e.tar.bz2
rtmux-10aab825394541df3140bcb4e49b6a0e05997f8e.zip
Sync OpenBSD patchset 459:
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.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index c2ba74d1..ad458836 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.487 2009-10-28 23:01:44 tcunha Exp $ */
+/* $Id: tmux.h,v 1.488 2009-10-28 23:03:51 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1640,6 +1640,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);