emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/treesit-fold 9f48ef560c 322/417: fix: render all frames


From: ELPA Syncer
Subject: [nongnu] elpa/treesit-fold 9f48ef560c 322/417: fix: render all frames
Date: Mon, 1 Jul 2024 10:02:58 -0400 (EDT)

branch: elpa/treesit-fold
commit 9f48ef560cc859d3a81d325863b1c9fe1183a5b3
Author: JenChieh <jcs090218@gmail.com>
Commit: JenChieh <jcs090218@gmail.com>

    fix: render all frames
---
 ts-fold-indicators.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ts-fold-indicators.el b/ts-fold-indicators.el
index 619a5cd69b..4eeed1a650 100644
--- a/ts-fold-indicators.el
+++ b/ts-fold-indicators.el
@@ -294,7 +294,7 @@ Argument FOLDED holds folding state; it's a boolean."
 
 (defun ts-fold-indicators--render-buffer ()
   "Render indicators for current buffer."
-  (dolist (window (get-buffer-window-list))
+  (dolist (window (get-buffer-window-list nil nil t))
     (ts-fold-indicators--render-window window)))
 
 (defun ts-fold-indicators--render-window (window)
@@ -333,7 +333,7 @@ Argument FOLDED holds folding state; it's a boolean."
 
 (defun ts-fold-indicators--remove-ovs-buffer ()
   "Remove all indicators overlays for this buffer."
-  (dolist (window (get-buffer-window-list))
+  (dolist (window (get-buffer-window-list nil nil t))
     (ts-fold-indicators--remove-ovs window)))
 
 (provide 'ts-fold-indicators)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]