README.org

July 9, 2018 ยท View on GitHub

  • DEPRECATION WARNING evil-mu4e has been merged into evil-collection. See: https://github.com/emacs-evil/evil-collection.

  • evil-mu4e.el This package configures keybindings for mu4e that make sense for Evil users.

  • Installation and use ** MELPA

The recommended method is to use MELPA via package.el (M-x package-install RET evil-mu4e RET).

To setup the new bindings, add the following the Emacs initialization file:

#+BEGIN_SRC emacs-lisp (require 'evil-mu4e) #+END_SRC

** Manual install

Evil and mu4e are both required. After requiring those packages, the following will setup the new key bindings for you.

#+BEGIN_SRC emacs-lisp (add-to-list 'load-path "/path/to/evil-mu4e.el") (require 'evil-mu4e) #+END_SRC

  • Keybindings

The bindings that differ from normal mu4e bindings are listed below: ** General commands | Commmand | evil-mu4e | Alternative | |--------------------------+-----------+-------------| | Jump to maildir | J | | | Update | u | | | Compose message | cc | C | | Kill update mail process | x | |

** Commands for header-mode and view-mode | Command | evil-mu4e | Alternative | |---------------------------------+-----------+-------------| | Next message | C-j | | | Previous message | C-k | | | Mark the current thread as read | T | | | Compose message | cc | C | | Compose edit** | ce | E | | Compose forward** | cf | F | | Compose reply | cr | R | | Change sorting*** | o | O | | Rerun search | gr | | | Toggle include related | zr | | | Toggle threading | zt | | | Toggle hide cited | za | | | Skip duplicates | zd | | | Show log | gl | | | Select other view | gv | | | Save attachement(s) | p | P | | Save url | yu | | | Go to url | gx | | | Fetch url | gX | |

    • denotes only in header-mode
  • ** denotes Alternative only in header-mode
  • *** denotes Alternative only in view-mode