From 5076f5208893d56dee80ec8bb45566eb6e9584a0 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Tue, 3 Aug 2021 06:55:28 +0530 Subject: [PATCH] [fix] total time spacing --- elisp/chronometrist.org | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/elisp/chronometrist.org b/elisp/chronometrist.org index 92ae538..f66a0f3 100644 --- a/elisp/chronometrist.org +++ b/elisp/chronometrist.org @@ -2234,12 +2234,11 @@ is the name of the task to be clocked out of." (defun chronometrist-print-non-tabular () "Print the non-tabular part of the buffer in `chronometrist'." (with-current-buffer chronometrist-buffer-name - (let ((inhibit-read-only t) - (w "\n ")) + (let ((inhibit-read-only t)) (goto-char (point-max)) (--> (chronometrist-active-time-one-day) (chronometrist-format-duration it 'chronometrist-total) - (format "%s%- 29s%s" w "Total" it) + (format "\n%s%- 29s% 7s" (make-string 4 ?\s) "Total" it) (insert it))))) #+END_SRC **** goto-nth-task :procedure: