From 7e97f98afa5893192c8dc42d7a45e9c725e93f1c Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 2 Nov 2017 23:35:14 +0100 Subject: [PATCH] Eshell: Make status more aligned, start with a capital --- .emacs.d/lisp/init-eshell.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.emacs.d/lisp/init-eshell.el b/.emacs.d/lisp/init-eshell.el index 1a0efecb..2b2421bd 100644 --- a/.emacs.d/lisp/init-eshell.el +++ b/.emacs.d/lisp/init-eshell.el @@ -234,9 +234,9 @@ See `eshell' for the numeric prefix ARG." (when eshell-status--last-command-time (let ((duration (time-subtract (current-time) eshell-status--last-command-time))) (when (> (time-to-seconds duration) eshell-status-min-duration-before-display) - (format "#[STATUS] duration %.3fs, end time %s\n" - (time-to-seconds duration) - (format-time-string "%F %T" (current-time))))))) + (format "#[STATUS] End time %s, duration %.3fs\n" + (format-time-string "%F %T" (current-time)) + (time-to-seconds duration)))))) (defun eshell-status-record () (setq eshell-status--last-command-time (current-time)))