aboutsummaryrefslogtreecommitdiffhomepage
path: root/config.def.h
diff options
context:
space:
mode:
authorGravatar Ivan Delalande <colona@ycc.fr>2015-03-11 17:13:35 +0000
committerGravatar Roberto E. Vargas Caballero <k0ga@shike2.com>2015-03-11 17:25:48 +0000
commitf5075a9e9d27c64e115e056c5b973ab783c6c0f3 (patch)
tree23574e4c1da8c1da5bbbe85cec347b95aaadd484 /config.def.h
parentc87d45466bac0812101f3b0036a669cd3f72ab6b (diff)
Backspace value shouldn't depend on keypad state
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 5b985cd..28a413b 100644
--- a/config.def.h
+++ b/config.def.h
@@ -259,7 +259,7 @@ static Key key[] = {
{ XK_Delete, ShiftMask, "\033[3;2~", +1, 0, 0},
{ XK_Delete, XK_ANY_MOD, "\033[P", -1, 0, 0},
{ XK_Delete, XK_ANY_MOD, "\033[3~", +1, 0, 0},
- { XK_BackSpace, XK_ANY_MOD, "\177", +1, 0, 0},
+ { XK_BackSpace, XK_ANY_MOD, "\177", 0, 0, 0},
{ XK_Home, ShiftMask, "\033[2J", 0, -1, 0},
{ XK_Home, ShiftMask, "\033[1;2H", 0, +1, 0},
{ XK_Home, XK_ANY_MOD, "\033[H", 0, -1, 0},