st

My custom build of st terminal.
git clone https://git.mtkn.jp/st
Log | Files | Refs | README | LICENSE

commit 3fadcb0f5a78d75dbbdb253a3d49483e24e6cd9d
parent 31c3734a4f6c38dae90cefc5aa43b217b41e00a9
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Wed, 20 May 2026 08:00:19 +0900

fix worddelimiters

Diffstat:
Mconfig.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.h b/config.h @@ -41,7 +41,7 @@ static float chscale = 1.0; * * More advanced example: L" `'\"()[]{}" */ -wchar_t *worddelimiters = L" `'\()[]{} "; +wchar_t *worddelimiters = L" `'\"()[]{} "; /* selection timeouts (in milliseconds) */ static unsigned int doubleclicktimeout = 300;