Xinqi Bao's Git
projects
/
st.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
applied xclipboard patch. thx David Isaac Wolinsky.
[st.git]
/
config.def.h
diff --git
a/config.def.h
b/config.def.h
index
9506bc6
..
36982db
100644
(file)
--- a/
config.def.h
+++ b/
config.def.h
@@
-1,37
+1,37
@@
-#define TAB
8
+#define TAB 8
#define TNAME "st-256color"
#define TNAME "st-256color"
-#define FONT "
6x13
"
-#define BOLDFONT "
6x13bold
"
+#define FONT "
-misc-*-medium-r-semicondensed-*-13-*-*-*-*-*-iso8859-*
"
+#define BOLDFONT "
-misc-*-bold-r-semicondensed-*-13-*-*-*-*-*-iso8859-*
"
#define BORDER 2
#define SHELL "/bin/sh"
/* Terminal colors */
static const char *colorname[] = {
"black",
#define BORDER 2
#define SHELL "/bin/sh"
/* Terminal colors */
static const char *colorname[] = {
"black",
- "
#CC0000
",
- "
#4E9A06
",
- "
#C4A000
",
- "
#3465A4
",
- "
#75507B
",
- "
#06989A
",
- "
#888a85
",
- "
#555753
",
- "
#EF2929
",
- "
#8AE234
",
- "
#FCE94F
",
- "#
729FCF
",
- "
#AD7FA8
",
- "
#34E2E2
",
- "
#EEEEEC
"
+ "
red3
",
+ "
green3
",
+ "
yellow3
",
+ "
blue2
",
+ "
magenta3
",
+ "
cyan3
",
+ "
gray90
",
+ "
gray50
",
+ "
red
",
+ "
green
",
+ "
yellow
",
+ "#
5c5cff
",
+ "
magenta
",
+ "
cyan
",
+ "
white
"
};
/* Default colors (colorname index) */
};
/* Default colors (colorname index) */
-/* foreground, background, cursor
, visual bell
*/
+/* foreground, background, cursor */
#define DefaultFG 7
#define DefaultBG 0
#define DefaultCS 1
#define DefaultFG 7
#define DefaultBG 0
#define DefaultCS 1
-/*
s
pecial keys */
+/*
S
pecial keys */
static Key key[] = {
{ XK_BackSpace, "\177" },
{ XK_Delete, "\033[3~" },
static Key key[] = {
{ XK_BackSpace, "\177" },
{ XK_Delete, "\033[3~" },
@@
-53,38
+53,33
@@
static Key key[] = {
{ XK_F12, "\033[24~" },
};
{ XK_F12, "\033[24~" },
};
+/* Line drawing characters (sometime specific to each font...) */
static char gfx[] = {
static char gfx[] = {
- ['}'] = 'f',
- ['.'] = 'v',
- [','] = '<',
- ['+'] = '>',
- ['-'] = '^',
- ['h'] = '#',
- ['~'] = 'o',
- ['a'] = ':',
- ['f'] = '\\',
- ['`'] = '+',
- ['z'] = '>',
- ['{'] = '*',
- ['q'] = '-',
+ ['`'] = 0x01,
+ ['a'] = 0x02,
+ ['f'] = 'o',
+ ['g'] = '+',
['i'] = '#',
['i'] = '#',
- ['n'] = '+',
- ['y'] = '<',
- ['m'] = '+',
- ['j'] = '+',
- ['|'] = '!',
- ['g'] = '#',
- ['o'] = '~',
- ['p'] = '-',
- ['r'] = '-',
- ['s'] = '_',
- ['0'] = '#',
- ['w'] = '+',
- ['u'] = '+',
- ['t'] = '+',
- ['v'] = '+',
- ['l'] = '+',
- ['k'] = '+',
- ['x'] = '|',
+ ['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,
};
[255] = 0,
};