JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
selection clicks, shift+arrow keys, fast(er) redraw, key mask in config.h (thx Magnus...
[st.git] / config.def.h
index 36982db..c1afd88 100644 (file)
@@ -1,7 +1,7 @@
 #define TAB 8
 #define TNAME "st-256color"
-#define FONT "-misc-*-medium-r-semicondensed-*-13-*-*-*-*-*-iso8859-*"
-#define BOLDFONT "-misc-*-bold-r-semicondensed-*-13-*-*-*-*-*-iso8859-*"
+#define FONT "-*-*-medium-r-*-*-*-120-75-75-*-60-*-*"
+#define BOLDFONT "-*-*-bold-r-*-*-*-120-75-75-*-60-*-*"
 #define BORDER 2
 #define SHELL "/bin/sh"
 
@@ -26,60 +26,43 @@ static const char *colorname[] = {
 };
 
 /* Default colors (colorname index) */
-/* foreground, background, cursor */
+/* foreground, background, cursor   */
 #define DefaultFG 7
 #define DefaultBG 0
 #define DefaultCS 1
 
-/* Special keys */
+/* Special keys (change & recompile st.info accordingly) */
+/*    key,        mask,  output */
 static Key key[] = {
-       { XK_BackSpace, "\177" },
-       { XK_Delete,    "\033[3~" },
-       { XK_Home,      "\033[1~" },
-       { XK_End,       "\033[4~" },
-       { XK_Prior,     "\033[5~" },
-       { XK_Next,      "\033[6~" },
-       { XK_F1,        "\033OP"   },
-       { XK_F2,        "\033OQ"   },
-       { XK_F3,        "\033OR"   },
-       { XK_F4,        "\033OS"   },
-       { XK_F5,        "\033[15~" },
-       { XK_F6,        "\033[17~" },
-       { XK_F7,        "\033[18~" },
-       { XK_F8,        "\033[19~" },
-       { XK_F9,        "\033[20~" },
-       { XK_F10,       "\033[21~" },
-       { XK_F11,       "\033[23~" },
-       { XK_F12,       "\033[24~" },
+       { XK_BackSpace, 0, "\177" },
+       { XK_Insert,    0, "\033[2~" },
+       { XK_Delete,    0, "\033[3~" },
+       { XK_Home,      0, "\033[1~" },
+       { XK_End,       0, "\033[4~" },
+       { XK_Prior,     0, "\033[5~" },
+       { XK_Next,      0, "\033[6~" },
+       { XK_F1,        0, "\033OP"   },
+       { XK_F2,        0, "\033OQ"   },
+       { XK_F3,        0, "\033OR"   },
+       { XK_F4,        0, "\033OS"   },
+       { XK_F5,        0, "\033[15~" },
+       { XK_F6,        0, "\033[17~" },
+       { XK_F7,        0, "\033[18~" },
+       { XK_F8,        0, "\033[19~" },
+       { XK_F9,        0, "\033[20~" },
+       { XK_F10,       0, "\033[21~" },
+       { XK_F11,       0, "\033[23~" },
+       { XK_F12,       0, "\033[24~" },
 };
 
 /* Line drawing characters (sometime specific to each font...) */
 static char gfx[] = {
-       ['`'] = 0x01,
-       ['a'] = 0x02,
        ['f'] = 'o',
        ['g'] = '+',
        ['i'] = '#',
-       ['j'] = 0x0B,
-       ['k'] = 0x0C,
-       ['l'] = 0x0D,
-       ['m'] = 0x0E,
-       ['n'] = 0x0F,
-       ['o'] = 0x10,
-       ['p'] = 0x11,
-       ['q'] = 0x12,
-       ['r'] = 0x13,
-       ['s'] = 0x14,
-       ['t'] = 0x15,
-       ['u'] = 0x16,
-       ['v'] = 0x17,
-       ['w'] = 0x18,
-       ['x'] = 0x19,
-       ['y'] = 0x1A,
-       ['z'] = 0x1B,
-       ['{'] = 0x1C,
-       ['|'] = 0x1D,
-       ['}'] = 0x1E,
-       ['~'] = 0x1F,
        [255] = 0,
 };
+
+/* double-click timeout (in milliseconds) between clicks for selection */
+#define DOUBLECLICK_TIMEOUT 300
+#define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)