-
Meow provides the capability to allow a user to set the default state when a new buffer with a major mode is opened using the Is there functionality which allows for the same capabilities when a minor mode is present? Increasingly I am finding that there are minor modes where I experience friction as I want them to be in Aside: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
As far as I know, Meow acts almost the same in But in your case, this would become awkward, because escaping to How about this: add a hook to whatever minor mode you want to avoid
I once used this trick in some REPL buffers. But please keep in mind that I hooked this lambda to major modes instead of minor ones. Minor modes in Emacs are used like helpers for major modes as I understand it. So you may find it even more awkward to tweak Meow with minor modes. |
Beta Was this translation helpful? Give feedback.
-
By meow's design, if you are in a buffer where text editing is allowed, then it should be initialized with NORMAL state, even though it's not a file buffer, i.e. REPL, Chat, etc. One buffer can have multiple minor modes, but Meow has only one state at the same time. Could you tell about your use case? If it's some minor modes don't play well with meow, then it should be fixed on Meow side. |
Beta Was this translation helpful? Give feedback.
There are two places where I think you may find helpful information:
*Custom-mode*
, (entered withM-x customize
), if you TAB to the search field, you can directly type in any characters, even now Meow is in the Motion mode.But my knowledge of these two approaches are too shallow to provide any further hints on how you might be able to achieve exactly what you want.