Add DEC alignment test
[st.git] / config.def.h
blob5c4c518f2b5db2a508a3ebc3a5f795bb23131cd1
2 #define FONT "Liberation Mono:pixelsize=12:antialias=false:autohint=false"
4 /* Space in pixels around the terminal buffer */
5 #define BORDER 2
7 /* Default shell to use if SHELL is not set in the env */
8 #define SHELL "/bin/sh"
10 /* Terminal colors (16 first used in escape sequence) */
11 static const char *colorname[] = {
12 /* 8 normal colors */
13 "black",
14 "red3",
15 "green3",
16 "yellow3",
17 "blue2",
18 "magenta3",
19 "cyan3",
20 "gray90",
22 /* 8 bright colors */
23 "gray50",
24 "red",
25 "green",
26 "yellow",
27 "#5c5cff",
28 "magenta",
29 "cyan",
30 "white",
32 [255] = 0,
34 /* more colors can be added after 255 to use with DefaultXX */
35 "#cccccc",
36 "#333333",
39 /* Default colors (colorname index)
40 foreground, background, cursor, unfocused cursor */
41 #define DefaultFG 7
42 #define DefaultBG 0
43 #define DefaultCS 256
44 #define DefaultUCS 257
46 /* Special keys (change & recompile st.info accordingly)
47 Keep in mind that kpress() in st.c hardcodes some keys.
49 Mask value:
50 * Use XK_ANY_MOD to match the key no matter modifiers state
51 * Use XK_NO_MOD to match the key alone (no modifiers)
53 key, mask, output */
54 static Key key[] = {
55 { XK_BackSpace, XK_NO_MOD, "\177" },
56 { XK_Insert, XK_NO_MOD, "\033[2~" },
57 { XK_Delete, XK_NO_MOD, "\033[3~" },
58 { XK_Home, XK_NO_MOD, "\033[1~" },
59 { XK_End, XK_NO_MOD, "\033[4~" },
60 { XK_Prior, XK_NO_MOD, "\033[5~" },
61 { XK_Next, XK_NO_MOD, "\033[6~" },
62 { XK_F1, XK_NO_MOD, "\033OP" },
63 { XK_F2, XK_NO_MOD, "\033OQ" },
64 { XK_F3, XK_NO_MOD, "\033OR" },
65 { XK_F4, XK_NO_MOD, "\033OS" },
66 { XK_F5, XK_NO_MOD, "\033[15~" },
67 { XK_F6, XK_NO_MOD, "\033[17~" },
68 { XK_F7, XK_NO_MOD, "\033[18~" },
69 { XK_F8, XK_NO_MOD, "\033[19~" },
70 { XK_F9, XK_NO_MOD, "\033[20~" },
71 { XK_F10, XK_NO_MOD, "\033[21~" },
72 { XK_F11, XK_NO_MOD, "\033[23~" },
73 { XK_F12, XK_NO_MOD, "\033[24~" },
76 /* Set TERM to this */
77 #define TNAME "st-256color"
79 /* double-click timeout (in milliseconds) between clicks for selection */
80 #define DOUBLECLICK_TIMEOUT 300
81 #define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)
83 #define TAB 8