b4n left a comment (geany/geany#4497)
@JustinWebDev BTW if you can build Geany, you might want to try this patch to
see if makes line wrapping (or disabling it) substantially faster:
```diff
diff --git a/src/editor.c b/src/editor.c
index 77fcb9e65..16e3fa341 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -4948,6 +4948,8 @@ static ScintillaObject *create_new_sci(GeanyEditor
*editor)
setup_sci_keys(sci);
+ SSM(sci, SCI_SETLAYOUTTHREADS, g_get_num_processors(), 0);
+
sci_set_lines_wrapped(sci, editor->line_wrapping);
sci_set_caret_policy_x(sci, CARET_JUMPS | CARET_EVEN, 0);
/* Y policy is set in editor_apply_update_prefs() */
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/4497#issuecomment-3694144273
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/4497/[email protected]>