summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init/km-mail.el13
1 files changed, 0 insertions, 13 deletions
diff --git a/init/km-mail.el b/init/km-mail.el
deleted file mode 100644
index 461af07..0000000
--- a/init/km-mail.el
+++ /dev/null
@@ -1,13 +0,0 @@
-(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)