summaryrefslogtreecommitdiffstats
path: root/.emacs.d/lisp/bandali-message.el
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2021-05-15 20:04:21 -0400
committerAmin Bandali <bandali@gnu.org>2021-05-15 20:14:07 -0400
commitbc04a4d40544c77d163d6497f3863b9b566d64d4 (patch)
treed0329a249504ea3737ec01a81f23b0a0f4c96a80 /.emacs.d/lisp/bandali-message.el
parent41fb7da0e9da05c0d1cf7bb58c918b69d48adf65 (diff)
downloadconfigs-bc04a4d40544c77d163d6497f3863b9b566d64d4.tar.gz
configs-bc04a4d40544c77d163d6497f3863b9b566d64d4.tar.xz
configs-bc04a4d40544c77d163d6497f3863b9b566d64d4.zip
migrate from ebdb to a simple ~/.mailrc
also automatically expand aliases when going to the next line or jumping to the end of buffer in message-mode.
Diffstat (limited to '.emacs.d/lisp/bandali-message.el')
-rw-r--r--.emacs.d/lisp/bandali-message.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs.d/lisp/bandali-message.el b/.emacs.d/lisp/bandali-message.el
index 5952b52..c66a669 100644
--- a/.emacs.d/lisp/bandali-message.el
+++ b/.emacs.d/lisp/bandali-message.el
@@ -61,7 +61,6 @@
'(gnus-find-subscribed-addresses)
message-dont-reply-to-names
"\\(\\(amin@shemshak\\.org\\)\\|\\(.*@aminb\\.org\\)\\|\\(\\(bandali\\|mab\\|aminb?\\)@gnu\\.org\\)\\|bandali@fsf\\.org\\|\\(a?bandali@\\(csclub\\.\\)?uwaterloo\\.ca\\)\\|amin\\.bandali@savoirfairelinux\\.com\\)")
- ;; (require 'company-ebdb)
;; (custom-set-faces
;; '(message-header-subject
;; ((t (:foreground "#111" :weight semi-bold))))
@@ -104,6 +103,10 @@ non-nil."
(kbd "M-RET") #'b/message-newline-or-asterism)
;; local key bindings
+ (define-key message-mode-map
+ [remap next-line] #'mail-abbrev-next-line)
+ (define-key message-mode-map
+ [remap end-of-buffer] #'mail-abbrev-end-of-buffer)
(defvar b/footnote-prefix-map)
(define-prefix-command 'b/footnote-prefix-map)
(define-key message-mode-map (kbd "C-c f n")