Creating frames in the GUI Emacs behaves like frames in a terminal

In a terminal, Emacs manages multiple frames with names such as F1, F2 .... because it cannot create multiple OS windows. I want the GUI version to behave like this, that is, instead of creating multiple OS windows, I want it to create many virtual frames inside the same Emacs window. Is there any way?

+4
source share
1 answer

If you mean that you want to access frames by name, then yes, you can do this with Icicles .

By default it is C-x 5 oattached to multi-command icicle-select-frame . This allows you to select one or more frames by name.

name. [NUMBER], . , , , *Help*, *Help*[2] .

C-x 5 o . Emacs regexp (, , ). ( .)

( - , F1, F2 .., Emacs, name. ..)

+1

Source: https://habr.com/ru/post/1544118/


All Articles