pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f60751
)
Allow combinations with Backspace
author
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Fri, 13 Mar 2015 07:26:16 +0000
(07:26 +0000)
committer
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Fri, 13 Mar 2015 07:26:16 +0000
(07:26 +0000)
XN_ANY_MOD makes that any combination of backspace will return always
DEL. This patch lets to X to decide which value returns.
config.def.h
patch
|
blob
|
history
diff --git
a/config.def.h
b/config.def.h
index
28a413b
..
8a8236c
100644
(file)
--- 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", 0, 0, 0},
+ { XK_BackSpace, XK_
NO_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},