X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.h;h=7da58480b095133a9c7c2f37303faf34f0946728;hb=f2dff29a16ef0eb1a0b680cdd753471ba406e4f5;hp=5d9162707ed216c7adf9d9d98f08347571dd9093;hpb=cf65699a29683bff9d50187c18b160e21a538f48;p=st.git diff --git a/config.h b/config.h index 5d91627..7da5848 100644 --- a/config.h +++ b/config.h @@ -3,7 +3,7 @@ #define FONT "fixed" #define BORDER 3 -#define LINESPACE 1 /* additional pixel between each line */ +#define LINESPACE 0 /* additional pixel between each line */ /* Terminal colors */ static const char *colorname[] = { @@ -24,16 +24,15 @@ static const char *colorname[] = { #define DefaultCS 1 #define BellCol DefaultFG - /* special keys */ -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", +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" }, };