Variable: hyrolo-file-list
hyrolo-file-list is a customizable variable defined in hyrolo.el.
Value
("~/.rolo.otl")
Documentation
List of files containing hyrolo entries.
The first file should be a user-specific hyrolo file, typically in the home
directory and must have a suffix of either .org (Org mode) or .otl (Emacs
Outline mode). Other files in the list may use suffixes of .org, .otl, .md
(Markdown mode) or .kotl (Koutline mode).
A hyrolo-file consists of:
(1) an optional header beginning with and ending with a line which matches
hyrolo-hdr-regexp;
(2) one or more rolo entries which each begin with
hyrolo-hdr-and-entry-regexp and may be nested.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defcustom hyrolo-file-list (list (if (file-readable-p "~/.rolo.org")
"~/.rolo.org"
"~/.rolo.otl"))
"List of files containing hyrolo entries.
The first file should be a user-specific hyrolo file, typically in the home
directory and must have a suffix of either .org (Org mode) or .otl (Emacs
Outline mode). Other files in the list may use suffixes of .org, .otl, .md
\(Markdown mode) or .kotl (Koutline mode).
A hyrolo-file consists of:
(1) an optional header beginning with and ending with a line which matches
`hyrolo-hdr-regexp';
(2) one or more rolo entries which each begin with
`hyrolo-hdr-and-entry-regexp' and may be nested."
:type '(repeat file)
:initialize #'custom-initialize-default
:set #'hyrolo-set-file-list
:group 'hyperbole-hyrolo)