Function: projectile-visit-project-tags-table

projectile-visit-project-tags-table is a byte-compiled function defined in projectile.el.

Signature

(projectile-visit-project-tags-table)

Documentation

Visit the current project's tags table.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
(defun projectile-visit-project-tags-table ()
  "Visit the current project's tags table."
  (when (projectile-project-p)
    (let ((tags-file (projectile-expand-root projectile-tags-file-name)))
      (when (file-exists-p tags-file)
        (with-demoted-errors "Error loading tags-file: %s"
          (visit-tags-table tags-file t))))))