Variable: org-ctags-open-link-functions

org-ctags-open-link-functions is a customizable variable defined in org-ctags.el.gz.

Value

(org-ctags-find-tag
 org-ctags-ask-rebuild-tags-file-then-find-tag
 org-ctags-ask-append-topic)

Documentation

List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS by ORG-CTAGS.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-ctags.el.gz
(defcustom org-ctags-open-link-functions
  '(org-ctags-find-tag
    org-ctags-ask-rebuild-tags-file-then-find-tag
    org-ctags-ask-append-topic)
  "List of functions to be prepended to ORG-OPEN-LINK-FUNCTIONS by ORG-CTAGS."
  :version "24.1"
  :type 'hook
  :options '(org-ctags-find-tag
             org-ctags-ask-rebuild-tags-file-then-find-tag
             org-ctags-rebuild-tags-file-then-find-tag
             org-ctags-ask-append-topic
             org-ctags-append-topic
             org-ctags-ask-visit-buffer-or-file
             org-ctags-visit-buffer-or-file
             org-ctags-fail-silently))