In your Emacs client you can find the Org Mode manual landing page, as seen online, in a roundabout way:
C-h r
m Org Organizer RET
f (org)Agenda Views RET
u
Is there a way of opening the Org Mode manual/info with fewer keystrokes?
In your Emacs client you can find the Org Mode manual landing page, as seen online, in a roundabout way:
C-h r
m Org Organizer RET
f (org)Agenda Views RET
u
Is there a way of opening the Org Mode manual/info with fewer keystrokes?
The usual way to get to the org mode manual is:
C-h i
m
org <RET>
This will get you to the first page of the manual. You can also use the command org-info
, i.e., M-x org-info
, to jump directly to that manual.
If you want to quickly jump to arbitrary info pages, you have a few options. The function info
provides programmatic access to the Info system. By convention, the name of the manual is provided in parentheses, and the name of the node follows, and the entire address is provided as a quote. For the top of the org-mode manual, this would be:
(info "(org) Top")
If you omit the node name ("Top" in this example), info
will open the first node, which is always named "Top". (you can return to the top node from any part of an info manual with the key t
).
When you're viewing an info node, the c
key is bound to Info-copy-current-node-name
, which will copy the full name of the node to the kill-ring, and briefly display it in the minibuffer.
You can bind that form to any key binding you like to give you quick access to the org manual.
For the particular case of org-mode
, you also have the function (org-info)
, which by default does the same as (info "(org) Top")
. From elisp, you can use it to jump directly to any node in the org-mode manual, e.g.,
(org-info "Capture - Refile - Archive")
Note that with org-info
, the prefix (org)
is not used, it's provided by the function.
Finally, you can also use bookmarks to link to either the org-manual, or a particular node within it. In standard Emacs, you set a bookmark with the sequence C-x r m
while visiting the file you want to bookmark, and jump back to it with C-x r b
. However, there are easier ways to do this in add-on packages. I like counsel-bookmark
, which is part of the swiper group of packages. Google will show you other options.
Without any extra setup you should be able to go down to at most:
C-h i
or C-h r
or whateverg (org) RET