[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/indent-bars 1215185bfb 033/431: draw: return object (if
From: |
ELPA Syncer |
Subject: |
[elpa] externals/indent-bars 1215185bfb 033/431: draw: return object (if any) |
Date: |
Mon, 16 Sep 2024 12:59:10 -0400 (EDT) |
branch: externals/indent-bars
commit 1215185bfb23185f7a38385163976e626533f46e
Author: JD Smith <93749+jdtsmith@users.noreply.github.com>
Commit: JD Smith <93749+jdtsmith@users.noreply.github.com>
draw: return object (if any)
---
indent-bars.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/indent-bars.el b/indent-bars.el
index 2625fe92ad..da3eaca0ee 100644
--- a/indent-bars.el
+++ b/indent-bars.el
@@ -606,12 +606,12 @@ variables, which see)."
(defun indent-bars--draw (start end &optional bar-from obj)
"Set bar text properties from START to END, starting at bar number BAR-FROM.
BAR-FROM is one by default. If passed, properties are set in
-OBJ, otherwise in the buffer."
+OBJ, otherwise in the buffer. OBJ is returned."
(cl-loop for pos = start then (+ pos indent-bars-spacing) while (< pos end)
for barnum from (or bar-from 1)
- ;; XXX need rear-nonsticky face???
do (put-text-property pos (1+ pos)
- 'face (indent-bars--face barnum) obj)))
+ 'face (indent-bars--face barnum) obj))
+ obj)
(defun indent-bars--display ()
"Display indentation bars based on line contents."
- [elpa] externals/indent-bars b4995ad103 058/431: README: add hl-indent-scope, (continued)
- [elpa] externals/indent-bars b4995ad103 058/431: README: add hl-indent-scope, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars f109140fcb 047/431: examples.md: added images, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 0500330d87 070/431: README: mention after-make-frame-hook, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 6e33272206 086/431: Ensure daemon-mode deferred setup runs in current buffer, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 21b84f400d 079/431: README: improvments and describe new non-stipple display options, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 213033e60e 100/431: Allow :blend by itself for current depth, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars be6a67cda4 093/431: Update README.md, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 4501c7e884 119/431: ts-lang -> ts-parser: cache parser instead of lang, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 026ee80a27 028/431: commentary: improve, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars ca9b1a630f 035/431: setup: slight re-org, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 1215185bfb 033/431: draw: return object (if any),
ELPA Syncer <=
- [elpa] externals/indent-bars 00c4e12bbd 036/431: allow highlighting single blank lines, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 1a5f016740 032/431: blank line bars: correctly mark final line bars, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 5f5dd86810 034/431: always resize stipple on setup, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 931bf08cb2 045/431: Examples: add default, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars c534bb5b5d 056/431: Minor README tweak, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars a9381135ff 051/431: Update README.md, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 9f03b2183b 055/431: Require compat, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 1cd0c30ba3 049/431: Tweaks to README.md, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 628d42f204 072/431: Defer setup when running under daemon and remove from README, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 568ec43b0e 109/431: Correct quote in docstring to silence compiler, ELPA Syncer, 2024/09/16