Questions tagged [autoload]
The autoload tag has no summary.
62 questions
1 vote
0 answers
68 views
org on android cannot `make autoloads`
Some context: I've got emacs running on android with termux, and i'm using elpaca to pull in a recent version of org-mode. The problem(s): Whenever org loads (which for me is on startup) I get a ...
0 votes
1 answer
55 views
How do you use shorthands for autoloads?
I want to write a shorthand for a shorthanded autoloaded function in a package, like so: ;;; super-duper-long-package-name.el --- Provide a cool command -*- lexical-binding: t -*- ;; Version: 0.1.0 ;...
0 votes
3 answers
82 views
disappearing function
I've got a standard function that seems to disappear on launch. After about a half an hour to an hour of use the function becomes available again. (avy-org-refile-as-child) The function appears to be ...
0 votes
1 answer
116 views
Celestial Mode Line throwing Error loading "celestial-mode-line" autoloads: (void-variable lunar-phases)
On startup am seeing this error and then the package is loading and working showing in modeline. Warning (emacs): Error loading "celestial-mode-line" autoloads: (void-variable lunar-phases) ...
0 votes
0 answers
341 views
massive memory leaks
I have a problem with memory leaks. Normally, I have only a few small org mode files loaded, and maybe a few odd yaml or Python files, less than 20 altogether). Over time, emacs keeps eating memory ...
0 votes
1 answer
306 views
Use of ;;;###autoload
I have seen the use of ;;;###autoload when defining minor modes. Why do some modes define foo-enable and foo-disable, and could be the purpose of ;;;###autoload before all of them ? ;;;###autoload (...
2 votes
0 answers
583 views
How to change this Paredit configuration on the init file from the classic imperative installation to a declarative approach via use-package?
When I first installed Paredit, I used to install things via the classic M-x and package-install. Then, I inserted the following configuration: (autoload 'enable-paredit-mode "paredit" "...
2 votes
1 answer
187 views
How to make defcustoms available before their file has been loaded?
I maintain an Elisp package that is split over many files, and each of the files has its own group of defcustoms in it, as a subgroup of the main package name. I am unsure of how to make these ...