branch: externals/org-modern
commit 6457c3d0a6fed45d510e5711ed3a40d09872c293
Author: JD Smith <93749+jdtsm...@users.noreply.github.com>
Commit: JD Smith <93749+jdtsm...@users.noreply.github.com>

    Add org-indent face to wrap-prefix for indented blocks
---
 org-modern-indent.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/org-modern-indent.el b/org-modern-indent.el
index 61a5ed4dc2..a6a04db7d0 100644
--- a/org-modern-indent.el
+++ b/org-modern-indent.el
@@ -118,7 +118,9 @@ returned."
         (indent (current-indentation)) ; space up to #+begin_
         (block-indent (+ (point) indent))
         (search (concat "^[[:blank:]]\\{" (number-to-string indent) "\\}"))
-        (wrap (concat (make-string (if pf (+ indent (length pf) -1) indent) 
?\s)
+        (wrap (concat (propertize
+                       (make-string (if pf (+ indent (length pf) -1) indent) 
?\s)
+                       'face 'org-indent)
                       org-modern-indent-guide))
         orig-prefix)
     (with-silent-modifications

Reply via email to