indent-guide
indent-guide copied to clipboard
incompatibility with "fill column indicator" mode
When using indent-guide with fci-mode, on empty lines indent guide characters are shown after fill column indicator.
I looked into fill-column-indicator.el and found that both indent-guide and fill-column-indicator make overlays at the same point to render vertical lines. I'm afraid that it needs much work to avoid the problem unfortunately.
A quick workaround is to increase indent-guide-threshold
to avoid rendering a line at the leftmost column.
(setq indent-guide-threshold 0)
Actually fill-column-indicator has caused many many other problems for me. It seems not compatible with company-mode, python-mode, etc. I would use highlight-beyond-fill-column
instead.
Same issue here.