Update kdch1 definition to three octal digits.
ncurses wasn't able to detect the delete-character key as KEY_DC. This patch fixes that. kdch1 was defined as "\0177", but terminfo(5) states: ... characters may be given as three octal digits after a \. The delete-character key is correctly defined in config.def.h.
This commit is contained in:
parent
29619a1a35
commit
487bbb24d0
1 changed files with 1 additions and 1 deletions
2
st.info
2
st.info
|
@ -73,7 +73,7 @@ st| simpleterm,
|
||||||
kri=\E[1;2A,
|
kri=\E[1;2A,
|
||||||
kclr=\E[3;5~,
|
kclr=\E[3;5~,
|
||||||
kdl1=\E[3;2~,
|
kdl1=\E[3;2~,
|
||||||
kdch1=\0177,
|
kdch1=\177,
|
||||||
kich1=\E[2~,
|
kich1=\E[2~,
|
||||||
kend=\E[4~,
|
kend=\E[4~,
|
||||||
kf1=\EOP,
|
kf1=\EOP,
|
||||||
|
|
Loading…
Reference in a new issue