Function: projectile-find-tag
projectile-find-tag is an autoloaded, interactive and byte-compiled
function defined in projectile.el.
Signature
(projectile-find-tag)
Documentation
Find tag in project.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;;###autoload
(defun projectile-find-tag ()
"Find tag in project."
(interactive)
(projectile-visit-project-tags-table)
;; Auto-discover the user's preference for tags
(let ((find-tag-fn (projectile-determine-find-tag-fn)))
(call-interactively find-tag-fn)))