I have installed some packages by using elpa in my Emacs, but how are they loaded when launching Emacs?
相关问题
- Symbol's function definition is void: declare-
- How can I set the SVN password with Emacs 23.1 bui
- Emacs shell: save commit message
- emacs bind key to the insertion of another
- Emacs - set mark on edit location
相关文章
- ess-rdired: I get this error “no ESS process is as
- Emacs/xterm color annoyance on Linux
- Pipe less to Emacs
- Capturing the output of “diff” with org-babel
- emacs terminal mode: how to copy and paste efficie
- How to permanently enable the hs-minor-mode in ema
- Pipe emacs shell output to a new buffer
- Following a link into a git-repo without lengthy d
package-install
is a part ofpackage.el
-- which You can see withdescribe-function
. Frompackage.el
documentation:So in every package there's a file
and this file is loaded at start up.
The whole package is contained under the
package-user-dir
:Each package also contains
NAME-pkg.el
with package version and description. For example here're files related totabbar
package:To quote the manual: 39.1.1 Summary: Sequence of Actions at Startup:
package-initialize
is then callspackage-activate
which in turn callspackage-activate-1
which ends with loadingNAME-autoload.el
: