branch: externals/indent-bars commit 80ca1daeefe74b7dea8c049e990516aae6ed81ed Author: JD Smith <93749+jdtsm...@users.noreply.github.com> Commit: JD Smith <93749+jdtsm...@users.noreply.github.com>
Remove reference to vestigial skip-leftmost-column --- indent-bars.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/indent-bars.el b/indent-bars.el index c19fcffcfa..83e54cb873 100644 --- a/indent-bars.el +++ b/indent-bars.el @@ -1061,9 +1061,8 @@ Adapted from `highlight-indentation-mode'." (setq indent-bars--font-lock-keywords `((,(rx-to-string `(seq bol (group - ,(if (and (not indent-tabs-mode) - indent-bars-skip-leftmost-column) - `(>= ,(1+ indent-bars-spacing) ?\s) + ,(if (not indent-tabs-mode) + `(>= ,(1+ indent-bars--offset) ?\s) '(+ (any ?\t ?\s)))) (not (any ?\t ?\s ?\n)))) (1 (indent-bars--display)))))