minad / org-modern

:unicorn: Modern Org Style
GNU General Public License v3.0
1.56k stars 48 forks source link

hl-line mode vs org-modern tables #175

Closed TheJJ closed 9 months ago

TheJJ commented 9 months ago

hl-line-mode uses an overlay to highlight the current line, while org-modern uses text properties to prettify org tables. the hl-line face just sets the background color, but nevertheless org-modern's table lines get invisible in the current line.

any idea how can these made be compatible?

with org-modern: image

without org-modern: image

minad commented 9 months ago

This problem is theme-dependent. For reference, it does not occur with Prot's Ef and Modus themes.

TheJJ commented 9 months ago

You're right, thanks! Fixed it in my theme SFTtech/starlit-emacs@136bbc4fc4961c5b2cd0824eb0762e672322fbd1 :)

-`(hl-line ((,colorful (:inverse-video nil :background ,.current-line))))
+`(hl-line ((,colorful (:background ,.current-line))))