summaryrefslogtreecommitdiffstats
path: root/key-string.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 20:01:36 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-04 20:01:36 +0000
commit879400e1f2d2d31c7ad733a6f43c424f89826209 (patch)
tree9f0a5bd20e47fc2f72f868b5d6de3a35f54af04b /key-string.c
parent7842d2967383f119dbbcc3967caebee5407e939b (diff)
Support binding 27-31.
Diffstat (limited to 'key-string.c')
-rw-r--r--key-string.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/key-string.c b/key-string.c
index 73952512..e2d03a2f 100644
--- a/key-string.c
+++ b/key-string.c
@@ -1,4 +1,4 @@
-/* $Id: key-string.c,v 1.4 2007-11-09 17:09:34 nicm Exp $ */
+/* $Id: key-string.c,v 1.5 2008-06-04 20:01:36 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -201,6 +201,11 @@ struct {
{ "^X", 24 },
{ "^Y", 25 },
{ "^Z", 26 },
+ { "^[", 27 },
+ { "^\\", 28 },
+ { "^]", 29 },
+ { "^^", 30 },
+ { "^_", 31 }
};
#define NKEYSTRINGS (sizeof key_string_table / sizeof key_string_table[0])