aboutsummaryrefslogtreecommitdiff
path: root/st.info
diff options
context:
space:
mode:
authorSebastian J. Bronner <waschtl@sbronner.com>2019-11-05 18:16:39 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-11-05 19:51:35 +0100
commit83866428de031300eab03fbb116bcf7d2b1d4f60 (patch)
tree9b18009dcbb78519c5018cf692626206031e2736 /st.info
parent1f09f0b0bbba29ceed9b4e6d558b6ad5b0843cfe (diff)
downloadst-patched-83866428de031300eab03fbb116bcf7d2b1d4f60.tar.bz2
st-patched-83866428de031300eab03fbb116bcf7d2b1d4f60.tar.xz
st-patched-83866428de031300eab03fbb116bcf7d2b1d4f60.zip
Fix tmux terminfo extensions Se and Ss
The tmux terminfo extensions Ss and Se are currently specified as booleans in `st.info`. They should be strings. See https://github.com/tmux/tmux/blob/eeedb43ae847a0a692ceea965f7556e84bca4fd0/tty-term.c lines 254 and 265. I have used the values from https://invisible-island.net/ncurses/terminfo.src.html#toc-_S_I_M_P_L_E_T_E_R_M for this patch.
Diffstat (limited to 'st.info')
-rw-r--r--st.info4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.info b/st.info
index 52fc617..78ffd30 100644
--- a/st.info
+++ b/st.info
@@ -189,10 +189,10 @@ st| simpleterm,
189 rmxx=\E[29m, 189 rmxx=\E[29m,
190 smxx=\E[9m, 190 smxx=\E[9m,
191# tmux extensions, see TERMINFO EXTENSIONS in tmux(1) 191# tmux extensions, see TERMINFO EXTENSIONS in tmux(1)
192 Se,
193 Ss,
194 Tc, 192 Tc,
195 Ms=\E]52;%p1%s;%p2%s\007, 193 Ms=\E]52;%p1%s;%p2%s\007,
194 Se=\E[2 q,
195 Ss=\E[%p1%d q,
196 196
197st-256color| simpleterm with 256 colors, 197st-256color| simpleterm with 256 colors,
198 use=st, 198 use=st,