9

Is it possible to open more than one info buffer in Emacs? I used C-h i to open info and started reading the section I was interested in. While reading, I wanted to refer to another info section -- using C-h i a second time does not open a second info buffer. How can this be done?

4 Answers4

12

Help for the info command says (get help with F1 f info):

A numeric prefix argument selects an Info buffer with the prefix
number appended to the Info buffer name.

So, open a first info window as usual, then open another info window by typing (for example):

M-2 M-x info

Now you have 2 independent info windows, the second one called *info*<2>.

Juancho
  • 2,652
1

The Info manual provides more information about the issue than the built-in documentation.

M-x info-display-manual is a convenient command. For more information, look at the Emacs Info Manual, chapter "Advanced", section "Advanced Info Commands", subsection "Create Info Buffer".

1

You can also use M-n bound to clone-buffer to clone current *info* buffer.

shibormot
  • 251
1

Split the window using C-X-2, to split horizontally or C-X-3 to split vertically. that way you can have two panes showing the same buffer. You can get back to a single pane using C-X-1.

enter image description here

terdon
  • 54,564