summaryrefslogtreecommitdiff
path: root/gnosis.el
diff options
context:
space:
mode:
Diffstat (limited to 'gnosis.el')
-rw-r--r--gnosis.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/gnosis.el b/gnosis.el
index efa10ed..a1318fe 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -369,6 +369,20 @@ Compare 2 strings, ignoring case and whitespace."
(cl-loop for (id tags) in (emacsql gnosis-db [:select [id tags] :from notes])
when (cl-every (lambda (tag) (member tag tags)) input-tags)
collect id))
+
+(defun gnosis-prompt-tag ()
+ "Prompt user to enter tags, until they enter `q'.
+
+Returns a list of unique entered tags."
+ (interactive)
+ (let ((tags '())
+ (tag ""))
+ (while (not (string= tag "q"))
+ (setf tag (completing-read "Add tag (q for quit): " (gnosis-unique-tags) nil nil))
+ (unless (or (string= tag "q") (member tag tags))
+ (push tag tags)))
+ (reverse tags)))
+
;; Review
;;;;;;;;;;
(defun gnosis-review--algorithm (id success)