<feed xmlns='http://www.w3.org/2005/Atom'>
<title>st.git/st.info, branch master</title>
<subtitle>my custom st build
</subtitle>
<id>https://git.aidengall.xyz/st.git/atom?h=master</id>
<link rel='self' href='https://git.aidengall.xyz/st.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/'/>
<updated>2023-10-07T10:16:59Z</updated>
<entry>
<title>Add terminfo entries for bracketed paste mode</title>
<updated>2023-10-07T10:16:59Z</updated>
<author>
<name>Peter Hofmann</name>
<email>scm@uninformativ.de</email>
</author>
<published>2023-10-07T05:41:02Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=9846a56bd7fdc86bf788db04bbbcbde7b7eb9952'/>
<id>urn:sha1:9846a56bd7fdc86bf788db04bbbcbde7b7eb9952</id>
<content type='text'>
Helps Vim (and hopefully others) to discover that this feature exists
without further user configuration.
</content>
</entry>
<entry>
<title>Partially add back in "support REP (repeat) escape sequence"</title>
<updated>2020-05-30T20:04:28Z</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2020-05-30T19:34:57Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=94b8ec002101a5e8f52a342e53431eea71aa0631'/>
<id>urn:sha1:94b8ec002101a5e8f52a342e53431eea71aa0631</id>
<content type='text'>
Add the functionality back in for xterm compatibility, but do not expose the
capability in st.info (yet).

Some notes:

It was reverted because it caused some issues with ncurses in some
configurations, namely when using BSD padding (--enable-bsdpad, BSD_TPUTS) in
ncurses it caused issues with repeating digits.

A fix has been upstreamed in ncurses since snapshot 20200523. The fix is also
backported to OpenBSD -current.
</content>
</entry>
<entry>
<title>Revert "support REP (repeat) escape sequence"</title>
<updated>2020-05-16T19:06:13Z</updated>
<author>
<name>Hiltjo Posthuma</name>
<email>hiltjo@codemadness.org</email>
</author>
<published>2020-05-16T16:06:42Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=475a0a36cb4fda1da30f014da65988e99b222876'/>
<id>urn:sha1:475a0a36cb4fda1da30f014da65988e99b222876</id>
<content type='text'>
This reverts commit e8392b282c2eaa28725241a9612804fb55113da4.

There is currently a bug in older ncurses versions (like on OpenBSD) where a
fix for a bug with REP is not backported yet. Most likely in tty/tty_update.c:

Noticed while using lynx (which uses ncurses/curses).
To reproduce using lynx: echo "Z0000000" | lynx -stdin

or using the program:

int
main(void)
{
	WINDOW *win;
	win = initscr();

	printw("Z0000000");

	refresh();

	sleep(5);

	return 0;
}

This prints "ZZZZZZZ" (incorrectly).
</content>
</entry>
<entry>
<title>support REP (repeat) escape sequence</title>
<updated>2020-05-16T12:08:10Z</updated>
<author>
<name>Avi Halachmi (:avih)</name>
<email>avihpit@yahoo.com</email>
</author>
<published>2020-05-14T15:18:07Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=e8392b282c2eaa28725241a9612804fb55113da4'/>
<id>urn:sha1:e8392b282c2eaa28725241a9612804fb55113da4</id>
<content type='text'>
The sequence \e[Nb prints the last printed char N (more) times if it's
printable, and it's ignored after newline or other control chars.

This is Ecma-048/ANSI-X3.6 sequence and not DEC VT. It's supported by
xterm, and ncurses uses it when possible, e.g. when TERM is xterm* (and
with this commit also st*).

xterm supports only codepoints&lt;=255, possibly due to internal limits.
We support any value/codepoint which was placed in a cell.

To test:
- tput rep 65 4 -&gt; prints 'AAAA'
- printf "\342\225\246\033[4b" -&gt; prints U+2566 1+4 times.
</content>
</entry>
<entry>
<title>Add rin terminfo capability</title>
<updated>2020-05-16T12:07:31Z</updated>
<author>
<name>Roberto E. Vargas</name>
<email>k0ga@shike2.com</email>
</author>
<published>2020-05-16T10:42:51Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=f8afebdfa0cc9a57b22c39c47e9b585f69453eb7'/>
<id>urn:sha1:f8afebdfa0cc9a57b22c39c47e9b585f69453eb7</id>
<content type='text'>
Tianlin Qu discovered that st is missing rin (scroll back #1 lines).
</content>
</entry>
<entry>
<title>Add st-mono terminfo entry</title>
<updated>2020-04-11T13:23:23Z</updated>
<author>
<name>Roberto E. Vargas Caballero</name>
<email>k0ga@shike2.com</email>
</author>
<published>2020-04-11T12:46:17Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=771bc401f76b329f78a285ca65355d4b43415172'/>
<id>urn:sha1:771bc401f76b329f78a285ca65355d4b43415172</id>
<content type='text'>
This entry is intended for monocolor display and it is very
helpful for color haters.
</content>
</entry>
<entry>
<title>Add terminfo entries for backspace mode</title>
<updated>2020-04-11T13:23:23Z</updated>
<author>
<name>Roberto E. Vargas Caballero</name>
<email>k0ga@shike2.com</email>
</author>
<published>2020-04-10T20:50:23Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=019449a7e64a881be8cc5d715fe9de32726ba190'/>
<id>urn:sha1:019449a7e64a881be8cc5d715fe9de32726ba190</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Fix tmux terminfo extensions Se and Ss</title>
<updated>2019-11-05T18:51:35Z</updated>
<author>
<name>Sebastian J. Bronner</name>
<email>waschtl@sbronner.com</email>
</author>
<published>2019-11-05T17:16:39Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=83866428de031300eab03fbb116bcf7d2b1d4f60'/>
<id>urn:sha1:83866428de031300eab03fbb116bcf7d2b1d4f60</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Add dim/smxx/rmxx to terminfo, remove duplicate kich1</title>
<updated>2017-07-12T11:29:30Z</updated>
<author>
<name>Quentin Rameau</name>
<email>quinq@fifth.space</email>
</author>
<published>2017-07-11T21:03:27Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=c0882f2ed1d7a2dd0fa2efa52157e6fc6fde3652'/>
<id>urn:sha1:c0882f2ed1d7a2dd0fa2efa52157e6fc6fde3652</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add color change terminfo capabilities</title>
<updated>2017-06-03T20:28:35Z</updated>
<author>
<name>Marc André Tanner</name>
<email>mat@brain-dump.org</email>
</author>
<published>2017-05-15T10:45:41Z</published>
<link rel='alternate' type='text/html' href='https://git.aidengall.xyz/st.git/commit/?id=b331da550b290d54592b7ba11242c92f5a303a48'/>
<id>urn:sha1:b331da550b290d54592b7ba11242c92f5a303a48</id>
<content type='text'>
</content>
</entry>
</feed>
