branch: externals/indent-bars
commit 77b3a117e8ba4b90459a3d9c0873dbfcbe3456ae
Author: JD Smith <93749+jdtsm...@users.noreply.github.com>
Commit: JD Smith <93749+jdtsm...@users.noreply.github.com>

    Add TCL mode support
---
 indent-bars.el | 2 ++
 1 file changed, 2 insertions(+)

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

Reply via email to