summaryrefslogtreecommitdiffstats
path: root/input-keys.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-10 18:28:09 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-10 18:28:09 +0000
commit312633203d58a19e7c1523e1589d72b3b3948c9c (patch)
tree703100735d5cb965eac4532bd5dfdef985e7f680 /input-keys.c
parent9722e7194bb054ea88919fc426897a4d17698eb6 (diff)
Support btab.
Diffstat (limited to 'input-keys.c')
-rw-r--r--input-keys.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/input-keys.c b/input-keys.c
index cf7f4ce7..98d0e001 100644
--- a/input-keys.c
+++ b/input-keys.c
@@ -1,4 +1,4 @@
-/* $Id: input-keys.c,v 1.19 2009-01-10 01:51:21 nicm Exp $ */
+/* $Id: input-keys.c,v 1.20 2009-01-10 18:28:09 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -55,6 +55,7 @@ struct input_key_ent input_keys[] = {
{ KEYC_END, "\033[4~", INPUTKEY_MODIFIER|INPUTKEY_XTERM },
{ KEYC_NPAGE, "\033[6~", INPUTKEY_MODIFIER|INPUTKEY_XTERM },
{ KEYC_PPAGE, "\033[5~", INPUTKEY_MODIFIER|INPUTKEY_XTERM },
+ { KEYC_BTAB, "\033[Z", INPUTKEY_MODIFIER },
/* Arrow keys. Cursor versions must come first. */
{ KEYC_UP, "\033OA", INPUTKEY_MODIFIER|INPUTKEY_CURSOR },