all repos — st @ 27468403cc436cf8197c886158e6e61f24ae5b8d

st (suckless terminal) config

Ignore DECARM sequence

DECARM modify the auto repeat settings in the keyboard, and since we can not
modify this setting in the Xserver the best solution is only ignore it.
---
 st.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
Roberto E. Vargas Caballero k0ga@shike2.com
commit

27468403cc436cf8197c886158e6e61f24ae5b8d

parent

d5b80e05e8df29b989c072b6529745576056d0bc

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M st.cst.c

@@ -1480,8 +1480,7 @@ break;

case 7: /* DECAWM -- Auto wrap */ MODBIT(term.mode, set, MODE_WRAP); break; - case 8: /* XXX: DECARM -- Auto repeat */ - break; + case 8: /* DECARM -- Auto repeat (IGNORED) */ case 0: /* Error (IGNORED) */ case 12: /* att610 -- Start blinking cursor (IGNORED) */ break;