From fbac51c07d4a76cbabfcbcd43e5357d08f6089d2 Mon Sep 17 00:00:00 2001 From: jao Date: Mon, 24 Jan 2022 02:20:39 +0000 Subject: jao-minibuffer: outsmarting magit --- lib/eos/jao-minibuffer.el | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/eos/jao-minibuffer.el b/lib/eos/jao-minibuffer.el index dabd822..8982011 100644 --- a/lib/eos/jao-minibuffer.el +++ b/lib/eos/jao-minibuffer.el @@ -81,11 +81,18 @@ (insert msg) (when hack (other-window 1) (other-window -1))))) - (defun jao-minibuffer--format-msg (msg) +(defun jao-minibuffer--strip-previous (msg) + (if-let* ((l (length msg)) + (n (text-property-any 0 l :minibuffer-message t msg))) + (string-trim (substring msg 0 n)) + msg)) + +(defun jao-minibuffer--format-msg (msg) (let* ((msgs (split-string msg "\n")) (prefix (when-let (p (string-join (butlast msgs) "\n")) (unless (string-blank-p p) (concat p "\n")))) (msg (car (last msgs))) + (msg (jao-minibuffer--strip-previous msg)) (msg (if (string-blank-p msg) msg (concat msg " ")))) (if jao-minibuffer-align-right-p (concat prefix msg (jao-minibuffer--aligned (length msg))) -- cgit v1.2.3