Function: projectile-todos--read-keywords

projectile-todos--read-keywords is a byte-compiled function defined in projectile.el.

Signature

(projectile-todos--read-keywords)

Documentation

Read which of projectile-todo-keywords to search for.

Several keywords can be given, comma separated, and a keyword that is not in the list can be typed in for a one-off search.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-todos--read-keywords ()
  "Read which of `projectile-todo-keywords' to search for.
Several keywords can be given, comma separated, and a keyword that is not
in the list can be typed in for a one-off search."
  (let ((keywords (delete "" (completing-read-multiple
                              (projectile-prepend-project-name
                               "TODO keywords: ")
                              projectile-todo-keywords))))
    (or keywords (user-error "No annotation keywords given"))))