[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/indent-bars 3d5bfe678d 222/431: Set markers only after
From: |
ELPA Syncer |
Subject: |
[elpa] externals/indent-bars 3d5bfe678d 222/431: Set markers only after computing flush ranges |
Date: |
Mon, 16 Sep 2024 12:59:30 -0400 (EDT) |
branch: externals/indent-bars
commit 3d5bfe678dc1860398f6dfb426f0244bf8f68c12
Author: JD Smith <93749+jdtsmith@users.noreply.github.com>
Commit: JD Smith <93749+jdtsmith@users.noreply.github.com>
Set markers only after computing flush ranges
---
indent-bars-ts.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/indent-bars-ts.el b/indent-bars-ts.el
index 02d87c55c3..f179ab88b8 100644
--- a/indent-bars-ts.el
+++ b/indent-bars-ts.el
@@ -280,12 +280,12 @@ both)."
(goto-char tsc-start)
(forward-line 0)
(indent-bars--current-indentation-depth)))
- (set-marker (ibts/start ibtcs) tsc-start)
- (set-marker (ibts/end ibtcs) tsc-end)
(cl-loop for (beg . end) in ; refontify where needed
(indent-bars-ts--symdiff
(cons old-start old-end) (cons tsc-start tsc-end))
- do (font-lock-flush beg end)))))))
+ do (font-lock-flush beg end))
+ (set-marker (ibts/start ibtcs) tsc-start)
+ (set-marker (ibts/end ibtcs) tsc-end))))))
(defvar indent-bars-ts--scope-timer nil)
(defun indent-bars-ts--update-scope ()
- [elpa] externals/indent-bars a6dbf67f74 245/431: Section rename/unused var cleanup, (continued)
- [elpa] externals/indent-bars a6dbf67f74 245/431: Section rename/unused var cleanup, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars fffa4fe52d 236/431: Tweak remap removal., ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 19dd505850 242/431: Reorg stipple display section, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 08fbce35de 214/431: Move treesitter setup above resize (which uses it), ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 070ab26c6d 197/431: new 'force option for init-scope, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 4583e3e9f5 240/431: Add reset to enable-theme-functions, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 301c97550b 219/431: Correctly initialize 'color alt custom (unspecified), ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 315aaaab74 232/431: Correct calls to depth-palette/get-color with STYLE, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars c86c2b670e 213/431: Correctly remove local after-make-frame hook function, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 7b75957588 228/431: Add Nix language support, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 3d5bfe678d 222/431: Set markers only after computing flush ranges,
ELPA Syncer <=
- [elpa] externals/indent-bars 9dbfcd8003 259/431: Make default stipple pattern more compact, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 6e864e049e 267/431: Disable auto-theme support for now, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 595b856e12 248/431: De-duplicate seen styles in case a style is re-initialized, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars f7686245cb 264/431: Do set default stipple face attributes: all now via filtered remap, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 4691ab75cc 246/431: Update font-lock expressions to include boundaries are arguments, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars fb986dd71e 253/431: Use #'equal when recording known styles to avoid duplicates, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars ff7a45fe99 247/431: docstring cleanup, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 6d59b8ff3b 272/431: Merge branch 'main' into treesit-scope, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 12204b155b 278/431: Use indent-bars group for everything (with sub-groups), ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 0df7ac5ce5 269/431: Supply correct arguments to handle-blank-lines, ELPA Syncer, 2024/09/16