From d681d6f132665848fac84494fb801719f5fa4013 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 11 Jan 2013 11:36:05 -0500 Subject: hook for using emacsclient with mutt --- conf/km-mail.el | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 conf/km-mail.el (limited to 'conf/km-mail.el') diff --git a/conf/km-mail.el b/conf/km-mail.el new file mode 100644 index 0000000..7a48417 --- /dev/null +++ b/conf/km-mail.el @@ -0,0 +1,15 @@ +(add-to-list 'auto-mode-alist '("/mutt" . mail-mode)) + +(defun km/mail-position () + "Move cursor to first blank line +and position cursor between two blank lines" + (interactive) + (forward-paragraph) + (insert "\n\n") + (previous-line)) + +(defun km/mail-mode-hook () + (auto-fill-mode 1) + (km/mail-position)) + +(add-hook 'mail-mode-hook 'km/mail-mode-hook) -- cgit v1.2.3