chore(editor): improve setup of indentation highlight guides

This commit is contained in:
2022-07-15 22:44:24 +01:00
parent a1a3c3d9f5
commit b411cc7856
3 changed files with 6 additions and 5 deletions

View File

@@ -12,7 +12,10 @@
"Activate or deactivate indentation guides.
Optional ARG is passed directly to mode toggle function."
(interactive)
(highlight-indent-guides-mode arg))
;; Only allow indentation markers if file size is below 100KB. Above that
;; performance is very bad.
(if (< (buffer-size) (* 100 1024))
(highlight-indent-guides-mode arg)))
(provide 'siren-display-indentation)
;;; siren-display-indentation.el ends here