X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.h;h=5d9162707ed216c7adf9d9d98f08347571dd9093;hb=dab8326e6428a5db6b7a6e08f40fa1e5ac77bc6f;hp=c01354dcb53437c8e824e5a7ae12a9a7a94cdab9;hpb=2e37752961f439c33614a9d8469d7c297f0465cb;p=st.git diff --git a/config.h b/config.h index c01354d..5d91627 100644 --- a/config.h +++ b/config.h @@ -6,7 +6,7 @@ #define LINESPACE 1 /* additional pixel between each line */ /* Terminal colors */ -static char* colorname[] = { +static const char *colorname[] = { "black", "red", "green", @@ -26,14 +26,14 @@ static char* colorname[] = { /* special keys */ -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" }, +static const 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", };