From 52f2eaf5a3385c015be1e829416ba334498ebacc Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 11 Feb 2024 23:57:34 -0800 Subject: [PATCH] Remove runewidth LUT creation --- cell.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cell.go b/cell.go index 0debeeec..e0dc4e9f 100644 --- a/cell.go +++ b/cell.go @@ -251,6 +251,8 @@ func init() { // might be more memory conscious. If that's you, set the TCELL_MINIMIZE // environment variable. if os.Getenv("TCELL_MINIMIZE") == "" { - runewidth.CreateLUT() + // micro-editor/tcell: We do not want LUT creation because it worsens + // startup time. + // runewidth.CreateLUT() } }