diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-19 12:46:54 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-19 12:46:54 +0200 |
commit | ce3f4fc647be3ab28f934db9365445a56ebd85bf (patch) | |
tree | 6e58a363b7cf818e0a3ff32bdcab95a68db8e64e /config.h | |
parent | d2f157c7418e2762316e5471f819ec1e5c49e93c (diff) | |
download | st-ce3f4fc647be3ab28f934db9365445a56ebd85bf.tar.gz st-ce3f4fc647be3ab28f934db9365445a56ebd85bf.zip |
fixed backspace problem, updated terminfo entry and moved TNAME in config.h.
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | #define TAB 8 | 1 | #define TAB 8 |
2 | 2 | #define TNAME "st-256color" | |
3 | #define FONT "6x13" | 3 | #define FONT "6x13" |
4 | #define BOLDFONT FONT"bold" | 4 | #define BOLDFONT FONT"bold" |
5 | #define BORDER 2 | 5 | #define BORDER 2 |
@@ -33,6 +33,7 @@ static const char *colorname[] = { | |||
33 | 33 | ||
34 | /* special keys */ | 34 | /* special keys */ |
35 | static Key key[] = { | 35 | static Key key[] = { |
36 | { XK_BackSpace, "\177" }, | ||
36 | { XK_Delete, "\033[3~" }, | 37 | { XK_Delete, "\033[3~" }, |
37 | { XK_Home, "\033[1~" }, | 38 | { XK_Home, "\033[1~" }, |
38 | { XK_End, "\033[4~" }, | 39 | { XK_End, "\033[4~" }, |