branch: externals/indent-bars
commit e23d42e6adef034adefe58fb65fcf60b50442628
Merge: a2f8b63f0f af989aff67
Author: JD Smith <93749+jdtsm...@users.noreply.github.com>
Commit: GitHub <nore...@github.com>

    Merge pull request #113 from aepyornis/main
    
    Add haml mode support
---
 indent-bars.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/indent-bars.el b/indent-bars.el
index f8a8f6aac6..bd6792ce86 100644
--- a/indent-bars.el
+++ b/indent-bars.el
@@ -1665,6 +1665,8 @@ Adapted from `highlight-indentation-mode'."
     java-ts-mode-indent-offset)
    ((and (derived-mode-p 'tcl-mode) (boundp 'tcl-indent-level))
     tcl-indent-level)
+   ((and (derived-mode-p 'haml-mode) (boundp 'haml-indent-offset))
+    haml-indent-offset)
    ((and (boundp 'standard-indent) standard-indent))
    (t 4)))                             ; backup
 

Reply via email to