aboutsummaryrefslogtreecommitdiff
path: root/st.info
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero <k0ga@shike2.com>2020-04-10 22:50:23 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2020-04-11 15:23:23 +0200
commit019449a7e64a881be8cc5d715fe9de32726ba190 (patch)
treef1ad04fa7423ee67c112826c2a08a5229ba6d0b4 /st.info
parentfbae700a3f32db76106b0ff6f49a73ecf0c2b4fe (diff)
downloadst-patched-019449a7e64a881be8cc5d715fe9de32726ba190.tar.bz2
st-patched-019449a7e64a881be8cc5d715fe9de32726ba190.tar.xz
st-patched-019449a7e64a881be8cc5d715fe9de32726ba190.zip
Add terminfo entries for backspace mode
St used to use backspace as BS until the commit 230d0c8, but due to general lack of knowledge of lusers, we moved to the most common configuration in linux to avoid answering the same question 3 times per month. With the most common configuration we have a backspace that returns a DEL, and we have a Delete key that doesn't return a DEL character neither a BS. When dealing with devices connected using a serial line (or even with Plan9) it is more common Backspace as BS and Delete as DEL. For this reason, st is not always the best tool when you talk with a serial device. This patch adds new terminfo entries for Backspace as BS and Delete as DEL. A patch for confg.h is also added, to make easier switch between both configurations.
Diffstat (limited to 'st.info')
-rw-r--r--st.info10
1 files changed, 10 insertions, 0 deletions
diff --git a/st.info b/st.info
index 78ffd30..1df490b 100644
--- a/st.info
+++ b/st.info
@@ -220,3 +220,13 @@ st-meta-256color| simpleterm with meta key and 256 colors,
220 smm=\E[?1034h, 220 smm=\E[?1034h,
221 rs2=\E[4l\E>\E[?1034h, 221 rs2=\E[4l\E>\E[?1034h,
222 is2=\E[4l\E>\E[?1034h, 222 is2=\E[4l\E>\E[?1034h,
223
224st-bs| simpleterm with backspace as backspace,
225 use=st,
226 kbs=\010,
227 kdch1=\177,
228
229st-bs-256color| simpleterm with backspace as backspace and 256colors,
230 use=st-256color,
231 kbs=\010,
232 kdch1=\177,