From 097b4232e2f54794ba05d881c08834a1e1f0472d Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 21 Mar 2015 15:23:35 +0200 Subject: [PATCH] mu4e: compose: tells us what you saved when saving a message Provide the number of lines saved in a draft message --- mu4e/mu4e-compose.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mu4e/mu4e-compose.el b/mu4e/mu4e-compose.el index dfbfb97b..bec7bf29 100644 --- a/mu4e/mu4e-compose.el +++ b/mu4e/mu4e-compose.el @@ -224,6 +224,7 @@ appear on disk." ;; hide some headers again (mu4e~compose-hide-headers) (set-buffer-modified-p nil) + (mu4e-message "Saved (%d lines)" (count-lines (point-min) (point-max))) ;; update the file on disk -- ie., without the separator (mu4e~proc-add (buffer-file-name) mu4e~draft-drafts-folder)) nil t))