diff options
author | Thanos Apollo <[email protected]> | 2024-07-24 14:20:53 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-07-24 14:20:53 +0300 |
commit | 90294708f33a3ef08f67f43ed0d8cc7950dea07a (patch) | |
tree | 3637941419f22063d7a38070be5883bb17b3faf6 | |
parent | af0b66f969da463dfd2b72c7393266f33b4c74c9 (diff) |
dashboard-reviews-graph: Remove separators.
* Using | as separators is not aesthetically pleaseing.
-rw-r--r-- | gnosis-dashboard.el | 6 |
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." |