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
commit30024d585b765b1d326abccba6a8e75d4793b61e (patch)
tree427ba08b80d8e6118e9fd061726c596ecd965c30 /config.h
parent29fafafb26c76d45f6855712898f61475728e5b1 (diff)
downloadst-30024d585b765b1d326abccba6a8e75d4793b61e.tar.gz
st-30024d585b765b1d326abccba6a8e75d4793b61e.tar.bz2
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[] = {
#define DefaultCS 1
#define BellCol DefaultFG
+
/* special keys */
-static char* key[] = {
- [XK_Delete] = "\033[3~",
- [XK_Home] = "\033[1~",
- [XK_End] = "\033[4~",
- [XK_Prior] = "\033[5~",
- [XK_Next] = "\033[6~",
- [XK_Left] = "\033[D",
- [XK_Right] = "\033[C",
- [XK_Up] = "\033[A",
- [XK_Down] = "\033[B",
+static Key key[] = {
+ { XK_Delete, "\033[3~" },
+ { XK_Home, "\033[1~" },
+ { XK_End, "\033[4~" },
+ { XK_Prior, "\033[5~" },
+ { XK_Next, "\033[6~" },
+ { XK_Left, "\033[D" },
+ { XK_Right, "\033[C" },
+ { XK_Up, "\033[A" },
+ { XK_Down, "\033[B" },
};