diff options
Diffstat (limited to 'lib/org')
| -rw-r--r-- | lib/org/jao-org-notes.el | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/org/jao-org-notes.el b/lib/org/jao-org-notes.el index 9624a94..9cc343f 100644 --- a/lib/org/jao-org-notes.el +++ b/lib/org/jao-org-notes.el @@ -33,13 +33,12 @@  (defvar jao-org-notes--rg    (concat "rg --null --line-buffered --color=ansi --max-columns=250"            " --no-heading --line-number --smart-case" -          " . -e \"^(#.(title|(file|roam_)tags): .*)ARG\" OPTS")) +          " . -e \"^(#.(title|filetags): .*)ARG\" OPTS")) + +(defvar jao-org-notes--trx ":[0-9]+:#\\+\\(file\\)?\\(title\\|tags\\):")  (defun jao-org-notes--clean-match (m) -  (cons (replace-regexp-in-string ":[0-9]+:#\\+\\(roam_\\|file\\)?\\(title\\|tags\\):" -                                  " (\\2)" -                                  (car m)) -        (cdr m))) +  (cons (replace-regexp-in-string jao-org-notes--trx " (\\2)" (car m)) (cdr m)))  (defun jao-org-notes--matches (lines)    (let ((ms (consult--grep-matches lines)))  | 
