From 90294708f33a3ef08f67f43ed0d8cc7950dea07a Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Wed, 24 Jul 2024 14:20:53 +0300 Subject: dashboard-reviews-graph: Remove separators. * Using | as separators is not aesthetically pleaseing. --- gnosis-dashboard.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnosis-dashboard.el b/gnosis-dashboard.el index 06f345d..d0bb93c 100644 --- a/gnosis-dashboard.el +++ b/gnosis-dashboard.el @@ -130,7 +130,7 @@ Optionally, use when using multiple months." (and (< (move-to-column start-column) start-column) ;; Add spaces to reach start-column. (insert (make-string (- start-column current-column) ?\s)))) - (insert " |") + (insert " ") do (end-of-line) (insert (gnosis-dashboard--graph-propertize (format "[%s] " (if (= day 0) "-" "x")) day)) (cl-incf count) @@ -138,14 +138,14 @@ Optionally, use when using multiple months." do (setq end-column (current-column)) (setq count 0) - (insert "|") + (insert " ") (cl-incf row) (end-of-line) (when (and (/= (forward-line 1) 0) (eobp)) (insert "\n") (forward-line 0))) (insert (make-string (- end-column (current-column)) ?\s)) - (insert "|"))) + (insert " "))) ;; TODO: Refactor this! (defun gnosis-dashboard-month-overview (&optional num) "Insert review graph for MONTHS." -- cgit v1.2.3