From 6e328aca7f876a3da3980a66a2fb9bc7101a7110 Mon Sep 17 00:00:00 2001 From: Benson Chu Date: Tue, 14 Jan 2025 15:09:12 -0600 Subject: [PATCH] Make this space independent --- lisp/ti-config/work-org-stuff.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/ti-config/work-org-stuff.el b/lisp/ti-config/work-org-stuff.el index ef4368b..f65640c 100644 --- a/lisp/ti-config/work-org-stuff.el +++ b/lisp/ti-config/work-org-stuff.el @@ -444,6 +444,7 @@ ("C-c n j" . my/org-roam-logger-capture-current) :map org-mode-map ("C-M-i" . completion-at-point)) + :commands my/get-org-roam-files-by-tags :config (org-roam-db-autosync-enable) (setq org-roam-capture-templates @@ -524,8 +525,10 @@ (defun org-agenda-insert-breaks-between (str1 str2) (let ((r (rx line-start - (= 18 nonl) - (not "."))) + " " + (+ (not whitespace)) + (+ whitespace) + (not (any whitespace ".")))) begin end) (save-excursion (goto-char (point-min))