aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2010-08-19 12:46:54 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2010-08-19 12:46:54 +0200
commit66efdff768c305b785234a918c67a687d437380d (patch)
tree6e58a363b7cf818e0a3ff32bdcab95a68db8e64e /config.h
parentb0672d093221133dd58c01ca5498ebf9ebb29ee5 (diff)
downloadst-66efdff768c305b785234a918c67a687d437380d.tar.gz
st-66efdff768c305b785234a918c67a687d437380d.tar.bz2
fixed backspace problem, updated terminfo entry and moved TNAME in config.h.
Diffstat (limited to 'config.h')
-rw-r--r--config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.h b/config.h
index aee8057..c3c4e41 100644
--- a/config.h
+++ b/config.h
@@ -1,5 +1,5 @@
#define TAB 8
-
+#define TNAME "st-256color"
#define FONT "6x13"
#define BOLDFONT FONT"bold"
#define BORDER 2
@@ -33,6 +33,7 @@ static const char *colorname[] = {
/* special keys */
static Key key[] = {
+ { XK_BackSpace, "\177" },
{ XK_Delete, "\033[3~" },
{ XK_Home, "\033[1~" },
{ XK_End, "\033[4~" },