Xinqi Bao's Git
projects
/
st.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
Applying the tab expansion patch from koga.
[st.git]
/
config.def.h
diff --git
a/config.def.h
b/config.def.h
index
f1bd91e
..
67b1316
100644
(file)
--- a/
config.def.h
+++ b/
config.def.h
@@
-1,6
+1,9
@@
-#define FONT "-*-*-medium-r-*-*-*-120-75-75-*-60-*-*"
-#define BOLDFONT "-*-*-bold-r-*-*-*-120-75-75-*-60-*-*"
+/*
+ * Do not include the »pixelsize« parameter in your font definition. It is
+ * used to calculate zooming.
+ */
+#define FONT "Liberation Mono:pixelsize=12:antialias=false:autohint=false"
/* Space in pixels around the terminal buffer */
#define BORDER 2
/* Space in pixels around the terminal buffer */
#define BORDER 2
@@
-29,16
+32,20
@@
static const char *colorname[] = {
"magenta",
"cyan",
"white",
"magenta",
"cyan",
"white",
-
- /* more colors can be added to use with DefaultXX */
+
+ [255] = 0,
+
+ /* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#cccccc",
+ "#333333",
};
/* Default colors (colorname index)
};
/* Default colors (colorname index)
- foreground, background, cursor */
-#define DefaultFG 7
-#define DefaultBG 0
-#define DefaultCS 16
+ foreground, background, cursor, unfocused cursor */
+#define DefaultFG 7
+#define DefaultBG 0
+#define DefaultCS 256
+#define DefaultUCS 257
/* Special keys (change & recompile st.info accordingly)
Keep in mind that kpress() in st.c hardcodes some keys.
/* Special keys (change & recompile st.info accordingly)
Keep in mind that kpress() in st.c hardcodes some keys.
@@
-46,11
+53,11
@@
static const char *colorname[] = {
Mask value:
* Use XK_ANY_MOD to match the key no matter modifiers state
* Use XK_NO_MOD to match the key alone (no modifiers)
Mask value:
* Use XK_ANY_MOD to match the key no matter modifiers state
* Use XK_NO_MOD to match the key alone (no modifiers)
-
+
key, mask, output */
static Key key[] = {
{ XK_BackSpace, XK_NO_MOD, "\177" },
key, mask, output */
static Key key[] = {
{ XK_BackSpace, XK_NO_MOD, "\177" },
- { XK_Insert, XK_NO_MOD, "\033[2~" },
+ { XK_Insert, XK_NO_MOD, "\033[2~" },
{ XK_Delete, XK_NO_MOD, "\033[3~" },
{ XK_Home, XK_NO_MOD, "\033[1~" },
{ XK_End, XK_NO_MOD, "\033[4~" },
{ XK_Delete, XK_NO_MOD, "\033[3~" },
{ XK_Home, XK_NO_MOD, "\033[1~" },
{ XK_End, XK_NO_MOD, "\033[4~" },
@@
-70,19
+77,21
@@
static Key key[] = {
{ XK_F12, XK_NO_MOD, "\033[24~" },
};
{ XK_F12, XK_NO_MOD, "\033[24~" },
};
-/*
Set TERM to this
*/
-#define
TNAME "st-256color"
+/*
Internal shortcuts.
*/
+#define
MODKEY Mod1Mask
-/* Line drawing characters (sometime specific to each font...) */
-static char gfx[] = {
- ['f'] = 'o',
- ['g'] = '+',
- ['i'] = '#',
- [255] = 0,
+static Shortcut shortcuts[] = {
+ /* modifier key function argument */
+ { MODKEY|ShiftMask, XK_Prior, xzoom, {.i = +1} },
+ { MODKEY|ShiftMask, XK_Next, xzoom, {.i = -1} },
};
};
+/* Set TERM to this */
+#define TNAME "st-256color"
+
/* double-click timeout (in milliseconds) between clicks for selection */
#define DOUBLECLICK_TIMEOUT 300
#define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)
#define TAB 8
/* double-click timeout (in milliseconds) between clicks for selection */
#define DOUBLECLICK_TIMEOUT 300
#define TRIPLECLICK_TIMEOUT (2*DOUBLECLICK_TIMEOUT)
#define TAB 8
+