From 1a55833d09292d7e9e5d68de46cfafd6bff5a81d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 7 Feb 2023 19:04:22 +0000 Subject: [PATCH] fix(editor/indent-guides): switch back to column display due to performance Yet again, I'm switching highlight-indent-guides back to column mode. It seemed that character mode performance had been improved. But I've run into a number of files since where it tanks performance to the point key strokes takes close to a second to render. --- modules/editor/siren-highlight-indent-guides.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/siren-highlight-indent-guides.el b/modules/editor/siren-highlight-indent-guides.el index 12abc93..8f2da9a 100644 --- a/modules/editor/siren-highlight-indent-guides.el +++ b/modules/editor/siren-highlight-indent-guides.el @@ -14,7 +14,7 @@ :custom (highlight-indent-guides-auto-enabled nil) (highlight-indent-guides-character ?\u2502) - (highlight-indent-guides-method 'character) + (highlight-indent-guides-method 'column) (highlight-indent-guides-responsive nil)) (provide 'siren-highlight-indent-guides)