summaryrefslogtreecommitdiff
path: root/gnosis-dashboard.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-07-24 14:20:53 +0300
committerThanos Apollo <[email protected]>2024-07-24 14:20:53 +0300
commit90294708f33a3ef08f67f43ed0d8cc7950dea07a (patch)
tree3637941419f22063d7a38070be5883bb17b3faf6 /gnosis-dashboard.el
parentaf0b66f969da463dfd2b72c7393266f33b4c74c9 (diff)
dashboard-reviews-graph: Remove separators.
* Using | as separators is not aesthetically pleaseing.
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."