Variable: hyrolo-auto-mode-alist

hyrolo-auto-mode-alist is a variable defined in hyrolo.el.

Value

(("\\.\\(md\\|markdown\\|mkd\\|mdown\\|mkdn\\|mdwn\\)$" . hyrolo-markdown-mode)
 ("\\.org$" . hyrolo-org-mode)
 ("\\.ou?tl$" . hyrolo-outline-mode))

Documentation

Entries to prepend to auto-mode-alist to invoke file modes used by HyRolo.

Typically, these specialized modes speed loading of files used solely for HyRolo text matches by avoiding the time-consuming initializations their standard major modes perform.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defvar hyrolo-auto-mode-alist
  (list (cons (format "\\.\\(%s\\)$" hyrolo-markdown-suffix-regexp)
	      'hyrolo-markdown-mode)
	'("\\.org$" . hyrolo-org-mode)
	'("\\.ou?tl$" . hyrolo-outline-mode))
  "Entries to prepend to `auto-mode-alist' to invoke file modes used by HyRolo.
Typically, these specialized modes speed loading of files used solely
for HyRolo text matches by avoiding the time-consuming initializations
their standard major modes perform.")