From 23eb0d7a3000e3a721622c2450ab7a729cbe3f6c Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sun, 22 Nov 2020 00:22:00 -0500 Subject: [PATCH] Use my own newline & reformat function for M-RET in message --- .emacs.d/lisp/bandali-message.el | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.emacs.d/lisp/bandali-message.el b/.emacs.d/lisp/bandali-message.el index 49b8a98..5952b52 100644 --- a/.emacs.d/lisp/bandali-message.el +++ b/.emacs.d/lisp/bandali-message.el @@ -88,6 +88,21 @@ (orgalist-mode 1) (yas-minor-mode 1))) + ;; custom newline & reformat function + (defun b/message-newline-or-asterism (arg) + "Create newlines per my liking or insert asterism if ARG is +non-nil." + (interactive "P") + (if arg + (b/insert-asterism) + (progn + (beginning-of-line) + (delete-region (point) (line-end-position)) + (newline) + (open-line 1)))) + (define-key message-mode-map + (kbd "M-RET") #'b/message-newline-or-asterism) + ;; local key bindings (defvar b/footnote-prefix-map) (define-prefix-command 'b/footnote-prefix-map) -- 2.20.1