I have a use-package idle hook that loads my org files into buffers for future use. I want this to be unobtrusive. However, I cannot find any find-file function which loads a file without changing the display.
There are a number of find-file functions in the Emacs manual, but none of these do what I want.
find-fileVisit a file.
find-file-read-onlyVisit a file for viewing, without allowing changes to it.
find-alternate-fileVisit a different file instead of the one visited last.
find-file-other-windowVisit a file, in another window.
find-file-other-frameVisit a file, in a new frame.
find-file-literallyVisit a file with no conversion of the contents.
I thought find-file-literally might be a winner, but it does in fact load the file into the current window.
Is there a function I can use to load files into buffers without any display changes?