Do not follow this link

~strahinja/st

config.h: Revert normal red, bright red and bright blue to upstream

Signed-off-by: Страхиња Радић <sr@strahinja.org>
config.h: Dim red and blue

Signed-off-by: Страхиња Радић <sr@strahinja.org>
472abd28 — Страхиња Радић 9 months ago
Merge branch 'upstream'
d63b9eb9 — Hiltjo Posthuma 9 months ago
bump version to 0.9.2
497a7563 — DOGMAN 9 months ago
Reset title when an empty title string is given

With this patch, st will reset its window title when an empty string is
given as the terminal title. For example:
	printf "\033]0;\007"

Some applications, like termdown, expect this functionality. xterm
implements it, but it seems that most other terminal emulators don't.
In any case, I don't see why there should ever be a case where the st
window doesn't have a title property.
48f7fa79 — Страхиња Радић 9 months ago
Merge branch 'upstream'
4f03a4a5 — Страхиња Радић 9 months ago
config.h: Set rows = 25

Signed-off-by: Страхиња Радић <contact@strahinja.org>
8c68ec52 — Hiltjo Posthuma 9 months ago
Revert "Fix cursor move with wide glyphs"

This reverts commit 7473a8d1a57e5f9aba41b953f4e498c35e1c9dc5.

This patch needs some more work. It caused regressions with programs that use
GNU readline, etc.

Original test-case example from Tim Culverhouse <tim@timculverhouse.com>:

	printf " 😀" && sleep 2 && printf "\e[D" && sleep 2 && printf "\e[D" && sleep 2

After the patch it caused regressions, example test-case:

	printf "A字\bB\n"
00884d44 — Страхиња Радић 9 months ago
config.h: Merge latest changes

Signed-off-by: Страхиња Радић <contact@strahinja.org>
6824012a — Страхиња Радић 9 months ago
Merge branch 'upstream'
b54805f1 — Страхиња Радић 9 months ago
st.c: Implement externalpipe-0.8.5 OpenBSD pledge fix

Signed-off-by: Страхиња Радић <contact@strahinja.org>
398ff6ee — Страхиња Радић 9 months ago
config.h,x.c: Add boldattr

Signed-off-by: Страхиња Радић <contact@strahinja.org>
4bc0b639 — Страхиња Радић 9 months ago
config.mk: Make OpenBSD main; applied/st-externalpipe-0.8.5.diff: Fix OpenBSD
pledge

Signed-off-by: Страхиња Радић <contact@strahinja.org>
5ce97162 — Hiltjo Posthuma 10 months ago
bump version to 0.9.1
f20e169a — Hiltjo Posthuma 10 months ago
config.def.h: improve latency for the default configuration
95f22c53 — Tommi Hirvola 10 months ago
set upper limit for REP escape sequence argument

Previously, printf 'L\033[2147483647b' would call tputc('L') 2^31 times,
making st unresponsive. This commit allows repeating the last character
at most 65535 times in order to prevent freezing and DoS attacks.
7473a8d1 — Quentin Rameau 10 months ago
Fix cursor move with wide glyphs

st would always move back 1 column,
even with wide glyhps (using more than a single column).

The glyph rune is set on its first column,
and the other ones are to 0,
so loop until we detect the start of the previous glyph.
csi: check for private marker in 'S' case

The handler for 'S' final character does not check for a private
marker. This can cause a conflict with a sequence called 'XTSMGRAPHICS'
which also has an 'S' final character, but uses the private marker '?'.
Without checking for a private marker, st will perform a scroll up
operation when XTSMGRAPHICS is seen, which can cause unexpected display
artifacts.
9846a56b — Peter Hofmann 1 year, 3 months ago
Add terminfo entries for bracketed paste mode

Helps Vim (and hopefully others) to discover that this feature exists
without further user configuration.
559fdc27 — Peter Hofmann 1 year, 3 months ago
Unhide cursor on RIS (\033c)

It is unclear if it's "required" to do this on RIS, but it's useful when
calling reset(1) after interactive programs have crashed and garbled up
the screen.

FWIW, other terminals do it as well (tested with XTerm, VTE, Kitty,
Alacritty, Linux VT).
Next
Do not follow this link