-
I'm pretty new to Meow and Emacs in general. Meow hints show up in all my other modes except org mode. Any idea why that might be the case? I tried searching and I didn't see any similar problems, hopefully this question is not repetitive. |
Beta Was this translation helpful? Give feedback.
Answered by
eshrh
Feb 8, 2023
Replies: 1 comment
-
It's disabled by default because it looks bad with variable fonts and hidden stars (indent mode) which are fairly common with org mode. So you'd do: (setq meow-expand-exclude-mode-list (remove 'org meow-expand-exclude-mode-list)) (you have to set the variable since the remove function returns a copy of the list without 'org) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jamesbtan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's disabled by default because it looks bad with variable fonts and hidden stars (indent mode) which are fairly common with org mode.
https://github.com/meow-edit/meow/blob/master/FAQ.org#why-dont-the-number-hints-for-extending-selection-show-up-in-org-mode-buffers
So you'd do:
(you have to set the variable since the remove function returns a copy of the list without 'org)