diff options
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -681,12 +681,12 @@ Optionally, add cusotm PROMPT." (defun gnosis-get-tags--unique () "Return a list of unique strings for tags in gnosis-db." - (cl-loop for tags in (gnosis-select 'tags 'notes) + (cl-loop for tags in (apply #'append (gnosis-select 'tags 'notes)) nconc tags into all-tags finally return (delete-dups all-tags))) (defun gnosis-select-by-tag (input-tags) - "Return note id for every note with INPUT-TAGS." + "Return note ID's for every note with INPUT-TAGS." (unless (listp input-tags) (error "`input-tags' need to be a list")) (cl-loop for (id tags) in (emacsql gnosis-db [:select [id tags] :from notes]) |