summaryrefslogtreecommitdiffhomepage
path: root/lib/eos/jao-minibuffer.el
diff options
context:
space:
mode:
Diffstat (limited to 'lib/eos/jao-minibuffer.el')
-rw-r--r--lib/eos/jao-minibuffer.el9
1 files changed, 8 insertions, 1 deletions
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)))