* mm updates

This commit is contained in:
Dirk-Jan C. Binnema
2011-10-04 08:12:47 +03:00
parent a02464d307
commit 1bb15332c4
5 changed files with 20 additions and 36 deletions

View File

@ -173,7 +173,6 @@ or if not available, :body-html converted to text)."
(define-key map "j" 'mm/jump-to-maildir)
(define-key map "g" 'mm/view-go-to-url)
(define-key map "f" 'mm/compose-forward)
(define-key map "r" 'mm/compose-reply)
(define-key map "c" 'mm/compose-new)
@ -185,6 +184,10 @@ or if not available, :body-html converted to text)."
'(lambda () (interactive) (goto-char (point-min))))
(define-key map (kbd "<end>")
'(lambda () (interactive) (goto-char (point-max))))
(define-key map (kbd "RET")
'(lambda () (interactive) (scroll-up 1)))
(define-key map (kbd "<backspace>")
'(lambda () (interactive) (scroll-up -1)))
;; navigation between messages
@ -206,7 +209,7 @@ or if not available, :body-html converted to text)."
;; misc
(define-key map "w" 'mm/view-toggle-wrap-lines)
(define-key map "h" 'mm/view-toggle-hide-quoted)
(define-key map "h" 'mm/view-toggle-hide-cited)
(define-key map "R" 'mm/view-refresh)
@ -272,7 +275,7 @@ removing '^M' etc."
;; remove the stupid CRs
(goto-char (point-min))
(while (re-search-forward "
(while (re-search-forward "[
 ]" nil t)
(replace-match "" nil t))