diff options
| author | Logan Barnett <logustus@gmail.com> | 2025-03-20 12:27:32 -0700 |
|---|---|---|
| committer | Youmu <condy0919@gmail.com> | 2025-03-31 23:56:30 +0800 |
| commit | 3ac7bb303e86c5753aad70571f36aa81e2a72869 (patch) | |
| tree | f6453027f312519e41fa9435adb797d25ae7973a | |
| parent | cb850ff0d11f644dbd133428cff57e82e655ecd7 (diff) | |
fix prefix key collision for mu4e
This reverts commit 05731c551be8cdda40ae6479adfb30b7e9c7fe39.
This fixes an issue that arises when loading `evil-collection-mu4e`, which
gives:
```
Key sequence c c starts with non-prefix key c
```
This occurs for both `mu4e-headers-mode-map` and `mu4e-main-mode-map`.
This should probably just be a different key, but for now I'm just trying to get
it unbroken.
cc @RyanGibb for visibility.
Thanks for the wonderful library!
| -rw-r--r-- | modes/mu4e/evil-collection-mu4e.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/modes/mu4e/evil-collection-mu4e.el b/modes/mu4e/evil-collection-mu4e.el index 3b9dd30..3e508b8 100644 --- a/modes/mu4e/evil-collection-mu4e.el +++ b/modes/mu4e/evil-collection-mu4e.el @@ -158,8 +158,7 @@ end of the buffer." "f" smtpmail-send-queued-mail "m" mu4e--main-toggle-mail-sending-mode "s" mu4e-search - "q" mu4e-quit - "c" mu4e-search-query) + "q" mu4e-quit) (mu4e-headers-mode-map "q" mu4e~headers-quit-buffer @@ -216,8 +215,7 @@ end of the buffer." "zd" mu4e-headers-toggle-skip-duplicates "gl" mu4e-show-log "gv" mu4e-select-other-view - "T" evil-collection-mu4e-mark-thread-as-read - "c" mu4e-search-query) + "T" evil-collection-mu4e-mark-thread-as-read) (mu4e-compose-mode-map "gg" mu4e-compose-goto-top |
