Function: hyrolo-find-file-noselect
hyrolo-find-file-noselect is an autoloaded and byte-compiled function
defined in hyrolo.el.
Signature
(hyrolo-find-file-noselect &optional FILE)
Documentation
HyRolo function to read a FILE in without selecting it.
It uses the setting of hyrolo-find-file-noselect-function and
overrides file major modes with any settings in hyrolo-auto-mode-alist.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
;;;###autoload
(defun hyrolo-find-file-noselect (&optional file)
"HyRolo function to read a FILE in without selecting it.
It uses the setting of `hyrolo-find-file-noselect-function' and
overrides file major modes with any settings in `hyrolo-auto-mode-alist'."
;; In a Lisp program, if you want to be sure of accessing a file’s
;; contents literally, you should create a temporary buffer and then read
;; the file contents into it using ‘insert-file-contents-literally’.
(let ((auto-mode-alist (append hyrolo-auto-mode-alist auto-mode-alist))
(enable-local-variables))
(hyrolo-find-file file hyrolo-find-file-noselect-function)))