Commit graph

1211 commits

Author SHA1 Message Date
43303fc684
update curl for rieter structure
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-08-07 09:38:47 +02:00
ec708fbd48
disable tic for now
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-08-07 09:33:08 +02:00
02dd34b407
Bump version to 0.9.2
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2023-08-07 09:29:11 +02:00
57e181e55f
Publish to new rieter instance
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2023-08-07 09:13:16 +02:00
b0f0106777
Merge remote-tracking branch 'upstream/master' 2023-08-07 09:09:54 +02:00
Shi Tian
3a6d6d7401 Fix for wide character being incorrectly cleared on MODE_INSERT
Under insert mode, when inserting a normal character in front of
a wide character, the affected region is shifted to the right by
one cell. However, the empty cell is reset as if being a part of a
wide character, causing the following cell being mishandled as a
dummy cell.
To reproduce the bug:
	printf '\033[4h' # set MODE_INSERT
	printf 妳好
	printf '\033[4D'
	printf 'x'
	printf '\033[4l\n'
2023-06-25 11:59:06 +02:00
Hiltjo Posthuma
211964d56e ignore C1 control characters in UTF-8 mode
Ignore processing and printing C1 control characters in UTF-8 mode.
These are in the range: 0x80 - 0x9f.

By default in st the mode is set to UTF-8.

This matches more the behaviour of xterm with the options -u8 or +u8 also.
Also see the xterm resource "allowC1Printable".

Let me know if this breaks something, in most cases I don't think so.

As usual a very good reference is:
https://invisible-island.net/xterm/ctlseqs/ctlseqs.html
2023-02-07 20:00:59 +01:00
Adam Price
f17abd25b3 Add support for DSR response "OK" escape sequence
"VT100 defines an escape sequence [1] called Device Status Report (DSR). When
the DSR sequence received is `csi 5n`, an "OK" response `csi 0n` is returned.
This patch adds that "OK" response.

I encountered this missing sequence when I noticed that fzf [2] would clobber
my prompt whenever completing a find.

To test that ST doesn't currently respond to `csi 5n`, use fzf's shell
extension in ST's repo to complete the path for a file.

    my-fancy-prompt $ vim **<tab>
    <select a file>
    st.c

Select a file with <enter>, and notice that fzf clobbers some or all of your
prompt.

After applying this patch, do the same test as above and notice that fzf has no
longer clobbered your prompt by placing the file name in the correct position
in your command.

    my-fancy-prompt $ vim **<tab>
    <select a file>
    my-fancy prompt $ vim st.c

Thank you for considering my first patch submission.

[1] https://www.xfree86.org/current/ctlseqs.html#VT100%20Mode
[2] https://github.com/junegunn/fzf
"

Patch slightly adapted with input from the mailinglist,
2023-02-07 19:57:34 +01:00
Hiltjo Posthuma
7e8050cc62 Fixed OSC color reset without parameter->resets all colors
Adapted from (garbled) patch by wim <wim@thinkerwim.org>

Additional notes: it should reset all the colors using xloadcols().
To reproduce: set a different (theme) color using some escape code, then reset
it:

	printf '\x1b]104\x07'
2023-02-05 13:29:35 +01:00
15479145de
Bumped version
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-11-26 08:49:38 +01:00
a35f266d5a
Merge branch 'master' of https://git.suckless.org/st 2022-11-26 08:47:41 +01:00
Hiltjo Posthuma
e5e959835b fix buffer overflow when handling long composed input
To reproduce the issue:

"
If you already have the multi-key enabled on your system, then add this line
to your ~/.XCompose file:

[...]
<question> <T> <E> <S> <T> <question> :
"1234567890123456789012345678901234567890123456789012345678901234567890"
"

Reported by and an initial patch by Andy Gozas <andy@gozas.me>, thanks!

Adapted the patch, for now st (like dmenu) handles a fixed amount of composed
characters, or otherwise ignores it. This is done for simplicity sake.
2022-10-25 17:11:11 +02:00
3df1a49dec
Updated PKGBUILD
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-10-19 16:01:12 +02:00
c2f62c6b10
Merge branch 'master' of https://git.suckless.org/st 2022-10-19 15:57:54 +02:00
Hiltjo Posthuma
68d1ad9b54 bump version to 0.9 2022-10-04 19:40:30 +02:00
Hiltjo Posthuma
0008519903 FAQ: document the color emojis crash issue which affected some systems is fixed
It is fixed in libXft 2.3.6:

https://gitlab.freedesktop.org/xorg/lib/libxft/-/blob/libXft-2.3.5/NEWS
2022-09-16 23:07:09 +02:00
f89f255d35
Bumped package version to 0.8.9
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-09-04 15:26:33 +02:00
e53dc84a9d
Merge remote-tracking branch 'upstream/master' 2022-09-04 15:19:40 +02:00
7aa4a0ec88
ci: output to different architectures instead
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-08-28 11:05:25 +02:00
Tom Schwindl
72fd32736a st: use `void' to indicate an empty parameter list 2022-08-18 17:14:10 +02:00
5256878b9c
Stop building for arm64; build microarch-optimised packages
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-06-06 23:09:29 +02:00
Hiltjo Posthuma
baa9357e96 Makefile: add manual path for OpenBSD 2022-05-01 18:38:40 +02:00
NRK
8629d9a1da code-golfing: cleanup osc color related code
* adds missing function prototype
* move xgetcolor() prototype to win.h (that's where all the other x.c
  func prototype seems to be declared at)
* check for snprintf error/truncation
* reduces code duplication for osc 10/11/12
* unify osc_color_response() and osc4_color_response() into a single function

the latter two was suggested by Quentin Rameau in his patch review on
the hackers list.
2022-04-19 11:43:37 +02:00
db3d1d3007
Weird it happened twice
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-04-09 11:34:51 +02:00
63c8917670
Totally didn't forget a part
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-04-09 11:33:59 +02:00
28f926e4da
Add bur repo to build containers 2022-04-09 11:32:10 +02:00
50ecbe5286
Replaced libxft dep with libxft-bgra
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-04-09 11:28:37 +02:00
e05a06731f
Switched to curlimages/curl for publish
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-04-07 21:18:25 +02:00
ece0b1641d
Added aarch64 to PKGBUILD
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-04-07 21:16:30 +02:00
6ff3b518d8
Switched to multi-platform build
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-04-07 21:15:30 +02:00
6f9d603bf5
Bumped pkgver
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-03-19 17:30:21 +01:00
8c355be5f1
Merge branch 'master' of https://git.suckless.org/st 2022-03-19 17:28:42 +01:00
NRK
ef0551932f base64_digits: reduce scope, implicit zero, +1 size
the array is not accessed outside of base64dec() so it makes sense to
limit it's scope to the related function. the static-storage duration of
the array is kept intact.

this also removes unnecessary explicit zeroing from the start and end of
the array. anything that wasn't explicitly zero-ed will now be
implicitly zero-ed instead.

the validity of the new array can be easily confirmed via running this
trivial loop:

	for (int i = 0; i < 255; ++i)
		assert(base64_digits[i] == base64_digits_old[i]);

lastly, as pointed out by Roberto, the array needs to have 256 elements
in order to able access it as any unsigned char as an index; the
previous array had 255.

however, this array will only be accessed at indexes which are
isprint() || '=' (see `base64dec_getc()`), so reducing the size of the
array to the highest printable ascii char (127 AFAIK) + 1 might also be
a valid strategy.
2022-03-18 12:20:27 +01:00
NRK
af3bb68add avoid potential UB when using isprint()
all the ctype.h functions' argument must be representable as an unsigned
char or as EOF, otherwise the behavior is undefined.
2022-03-18 12:11:27 +01:00
Zacchary Dempsey-Plante
2aefa348ba make underlines and strikethroughs respect chscale 2022-03-13 10:45:34 +01:00
276ba33367
Forgot to bump pkgrel
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-03-05 10:36:04 +01:00
ab3513a052
Updated PKGBUILD checksums
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-03-05 10:34:38 +01:00
84b417c22e
Forgot to switch back to cc
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-03-05 10:33:34 +01:00
c8b1194ad0
Switched back to gcc
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-03-05 10:32:11 +01:00
14a8129b39
Merge branch 'master' of git.rustybever.be:Chewing_Bever/st 2022-03-05 10:30:45 +01:00
3e676eadfb
Added platform restriction to CI 2022-03-05 10:30:18 +01:00
2cddf3f42f
Merge branch 'master' of git://git.suckless.org/st
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-02-19 13:27:46 +01:00
Santtu Lakkala
e823e2308f Delay redrawals on palette changes
Build on auto-sync and only mark window dirty on palette changes and let
the event handler do the actual draw.
2022-02-18 13:03:37 +01:00
6a8231388f
Switched to vieter server
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-02-02 11:18:22 +01:00
Hiltjo Posthuma
2c5edf28ec X10/SGR mouse: use alt as meta key instead of super/windows key 2022-01-12 09:44:27 +01:00
Hiltjo Posthuma
b1d97fec47 LICENSE: bump year 2022-01-10 17:11:17 +01:00
robert
ea7cd7b62f Fix mousereport
This patch replaces the previous one I sent.

The following changes are made in this patch:
 - Fix tracking of pressed buttons. Previously, pressing two buttons and
   then releasing one would make st think no buttons are pressed, which
   in particular broke MODE_MOUSEMOTION.
 - Always send the lowest-numbered pressed button on motion events; when
   no button is pressed for a motion event in MODE_MOUSEMANY, then send
   a release. This matches the behaviour of xterm. (Previously, st sent
   the most recently pressed button in the motion report.)
 - Remove UB (?) access to potentially inactive struct member
   e->xbutton.button of XEvent union.
 - Fix (unlikely) possibility of overflow for large button numbers.

The one discrepancy I found between st and xterm is that xterm sometimes
encodes buttons with large numbers (>5) strangely. E.g., xterm reports
presses of buttons 8 and 9 as releases, whereas st properly (?) encodes
them as presses.
2022-01-10 17:04:01 +01:00
c853108d20
Switched back to -O1 in fear of undefined behavior
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-01-08 12:13:56 +01:00
5920a16065
Switched to -O3 optimisations
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-01-07 23:14:16 +01:00
b3dce446f1
Forgot to update checksums again
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2022-01-07 22:23:27 +01:00