aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2009-06-21 19:52:06 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2009-06-21 19:52:06 +0200
commit0a5e5102096d65a3ba8e39ea9b9b0eb89fe30e04 (patch)
tree427ba08b80d8e6118e9fd061726c596ecd965c30 /config.h
parent4d794b3479cc586de7796d9b060b2eb469a6500d (diff)
downloadst-0a5e5102096d65a3ba8e39ea9b9b0eb89fe30e04.tar.gz
st-0a5e5102096d65a3ba8e39ea9b9b0eb89fe30e04.zip
reverted back to the old Key struct.
Diffstat (limited to 'config.h')
-rw-r--r--config.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/config.h b/config.h
index b66985f..c01354d 100644
--- a/config.h
+++ b/config.h
@@ -24,15 +24,16 @@ static char* colorname[] = {
24#define DefaultCS 1 24#define DefaultCS 1
25#define BellCol DefaultFG 25#define BellCol DefaultFG
26 26
27
27/* special keys */ 28/* special keys */
28static char* key[] = { 29static Key key[] = {
29 [XK_Delete] = "\033[3~", 30 { XK_Delete, "\033[3~" },
30 [XK_Home] = "\033[1~", 31 { XK_Home, "\033[1~" },
31 [XK_End] = "\033[4~", 32 { XK_End, "\033[4~" },
32 [XK_Prior] = "\033[5~", 33 { XK_Prior, "\033[5~" },
33 [XK_Next] = "\033[6~", 34 { XK_Next, "\033[6~" },
34 [XK_Left] = "\033[D", 35 { XK_Left, "\033[D" },
35 [XK_Right] = "\033[C", 36 { XK_Right, "\033[C" },
36 [XK_Up] = "\033[A", 37 { XK_Up, "\033[A" },
37 [XK_Down] = "\033[B", 38 { XK_Down, "\033[B" },
38}; 39};