vote up 1 vote down star

In Emacs (23 on Mac Leopard), I've discovered how to highlight the current line with hl-line-mode, but when using it globally in all buffers, it highlights the current line in all buffers in all frames.

I'd like to be able to highlight the current line (or at least have a different face for it) in only the currently active buffer. I'm sure this must be possible to some degree as the cursor changes dependent on whether the buffer is the current one or not.

Thanks

Singletoned

flag

1 Answer

vote up 4 vote down check

Looking at the documentation for hl-line-mode, it appears that you might have the variable hl-line-sticky-flag turned on. Try

C-h v hl-line-sticky-flag

to see if it's non-nil, and if so, then add

(setq hl-line-sticky-flag nil)

to your .emacs.

link|flag
Ok. I'm embarrassed now. I thought I'd read all the documentation for hl-line-mode. Thank you. – Singletoned Jun 2 at 21:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.