diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-04-21 07:41:07 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-04-21 07:41:07 -0400 |
commit | cb404dfe7cc98e955cedc1753efac494a60a3ec6 (patch) | |
tree | 0f6c92f47d84e81bbeb6b4f77910a2a037deef84 | |
parent | ecac90af2d86e41df18a1acfa97471e09c01b7e4 (diff) |
h/l to enter/exit mail/attach
-rw-r--r-- | README.md | 10 | ||||
-rw-r--r-- | muttrc | 6 |
2 files changed, 11 insertions, 5 deletions
@@ -49,16 +49,16 @@ To give you an example of the interface, here's an idea: - `m` - send mail (uses your default `$EDITOR` to write) - `j`/`k` and `d`/`u` - vim-like bindings to go down and up (or `d`/`u` to go down/up a page). -- `Enter` - read mail -- `r` - reply to highlighted mail -- `R` - reply all to highlighted mail -- `v` - view attachments to select and open them `s` to save, `Enter` to open. +- `l` - open mail, or attachment page or attachment +- `h` - the opposite of `l` +- `r`/`R` - reply/reply all to highlighted mail +- `s` - save selected mail or selected attachment - `gs`,`gi`,`ga`,`gd`,`gS` - Press `g` followed by another letter to change mailbox: `s`ent, `i`nbox, `a`rchive, `d`rafts, `S`pam, etc. - `M` and `C` - For `M`ove and `C`opy: follow them with one of the mailbox letters above, i.e. `MS` means "move to Spam". - `i#` - Press `i` followed by a number 1-9 to go to a different account. If you add 9 accounts via mutt-wizard, they will each be assigned a number. - `a` to add address/person to abook and `Tab` while typing address to complete one from book. - `?` - see all keyboard shortcuts - +- `ctrl-j`/`ctrl-k` - move up and down in sidebar, `ctrl-o` opens mailbox ## New stuff and improvements since the original release @@ -27,13 +27,19 @@ bind index \Cf noop # General rebindings bind attach <return> view-mailcap +bind attach l view-mailcap bind editor <space> noop bind index G last-entry bind index gg first-entry +bind pager,attach h exit bind pager j next-line bind pager k previous-line +bind pager l view-attachments bind index D delete-message bind index U undelete-message +bind index L limit +bind index h noop +bind index l display-message bind browser h goto-parent bind browser l select-entry bind pager,browser gg top-page |