From 102fe7c385677b8dec8ff0eb736e2130f16fd89c Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Sat, 20 Jul 2024 06:53:02 +0300 Subject: New variable: gnosis-review-notes: Hold value of notes for review. * Collection of note ids for review. --- gnosis.el | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gnosis.el') diff --git a/gnosis.el b/gnosis.el index e3577bc..dd81ab0 100644 --- a/gnosis.el +++ b/gnosis.el @@ -206,6 +206,9 @@ Seperate the question/stem from options." (defvar gnosis-due-notes-total nil "Total due notes.") +(defvar gnosis-review-notes nil + "Review notes.") + ;;; Faces (defgroup gnosis-faces nil @@ -1702,6 +1705,7 @@ NOTES: List of note ids" (if (null notes) (message "No notes for review.") (when (y-or-n-p (format "You have %s total notes for review, start session?" (length notes))) + (setf gnosis-review-notes notes) (catch 'stop-loop (cl-loop for note in notes do (let ((success (gnosis-review-note note))) -- cgit v1.2.3