Skip to content

Latest commit

 

History

History
30 lines (17 loc) · 1.67 KB

FAQ.org

File metadata and controls

30 lines (17 loc) · 1.67 KB

FREQUENTLY ASKED QUESTIONS

Why do meow-append and meow-insert behave the same way when there is no region?

In Emacs cursor is located between two characters, so we would have to implement a hack to change the behaviour. You can read more about it in this discussion thread.

I encountered a weird command behavior in normal state

Meow’s internal command will not call Emacs’ commands directly. They will call a keybind which is then linked to a command. Your customized keybind might be overriding the original command. Lookup the command you want to execute (meow-var.el) and overwrite it in your config.

Related issue

Example:

Here you can map Delete character to internal Meow’s delete character function.

(setq meow--kbd-delete-char "<deletechar>")

Can I use meow in doom-emacs?

Yes, please check out doom meow module.

Can I have a major-mode specified local leader?

No, you can’t. Here is the explanation.

Why don’t the number hints for extending selection show up in org-mode buffers?

The extend selection number hints are disabled in org-mode by default, because they work poorly with variable-width fonts, and fonts with different sizes. If you use a fixed width font and a single font size, the number hints can be enabled in org mode by removing the org symbol from the list meow-expand-exclude-mode-list . See this issue for more details.