summaryrefslogtreecommitdiff
path: root/gnosis-dashboard.el
diff options
context:
space:
mode:
Diffstat (limited to 'gnosis-dashboard.el')
-rw-r--r--gnosis-dashboard.el6
1 files 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."