Variable: hpath:auto-variable-alist

hpath:auto-variable-alist is a variable defined in hpath.el.

Value

(("\\.el[cn]?\\'" . load-path)
 ("\\.org\\'" . org-directory)
 ("\\.py\\'" . "PYTHONPATH"))

Documentation

Alist of filename patterns and related variables to prepend to resolve them.

Each element looks like FILENAME-REGEXP . LISP-VARIABLE-OR-ENV-VARIABLE-STR.

The VARIABLE value may be: a directory path, a list of directory paths or a colon or semicolon delimited string of directory paths.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defvar hpath:auto-variable-alist
  '(("\\.el[cn]?\\'" . load-path)
    ("\\.org\\'" . org-directory)
    ("\\.py\\'" . "PYTHONPATH"))
  "Alist of filename patterns and related variables to prepend to resolve them.
Each element looks like FILENAME-REGEXP . LISP-VARIABLE-OR-ENV-VARIABLE-STR.

The VARIABLE value may be: a directory path, a list of directory paths
or a colon or semicolon delimited string of directory paths.")