I want to create a clickable-link in my Org file directly to documentation built into Emacs. Is this possible to do? The documentation I want to link to are:
- Emacs Lisp Intro
- The GNU Emacs Lisp Reference Manual
I want to create a clickable-link in my Org file directly to documentation built into Emacs. Is this possible to do? The documentation I want to link to are:
When in a certain buffer one can use M-x org-store-link
to find the correct syntax for linking to that file.
For linking to internal documentation you can use the following links:
info:elisp#Introduction
info:elisp
The first will take you to the Elisp Intro, the second to the Reference Manual. Whenever you may wish to link to an info document, use the following syntax:
info:file#node
The file
and node
names are always listed on the top of any info file. In case the node name has spaces, then you'll have to use bracketed links, i.e.:
For entry "File: emacs.info, Node: User Input" use
[[info:emacs#User Input]]
To explore the documentation, use the command info-manual
, which is bound to C-h r
.