Difference between revisions of "Frame"

From WikEmacs
Jump to navigation Jump to search
(added links to the manual)
Line 2: Line 2:
  
 
It will typically have a title bar and some buttons to iconify (minimize), maximize / restore, and close the frame. To see an example, open up a second frame from your running Emacs instance with <code>C-x 5 2</code> (<code>make-frame-command</code>). You can close frames with <code>C-x 5 0</code> (<code>delete-frame</code>), though this will not close the last frame that is open.
 
It will typically have a title bar and some buttons to iconify (minimize), maximize / restore, and close the frame. To see an example, open up a second frame from your running Emacs instance with <code>C-x 5 2</code> (<code>make-frame-command</code>). You can close frames with <code>C-x 5 0</code> (<code>delete-frame</code>), though this will not close the last frame that is open.
 +
 +
== External links ==
 +
 +
* GNU Emacs manual:
 +
** {{Manual|emacs|Screen|Screen}}
 +
** {{Manual|emacs|Frames|Frames}}
  
 
[[Category:Level:Beginner]][[Category:Emacs:Jargon]]
 
[[Category:Level:Beginner]][[Category:Emacs:Jargon]]

Revision as of 18:44, 26 March 2012

In Emacs terminology, a "frame" is what most window managers (Windows, OSX, GNOME, KDE, etc.) would call a "window".

It will typically have a title bar and some buttons to iconify (minimize), maximize / restore, and close the frame. To see an example, open up a second frame from your running Emacs instance with C-x 5 2 (make-frame-command). You can close frames with C-x 5 0 (delete-frame), though this will not close the last frame that is open.

External links

  • GNU Emacs manual:
    • Screen (`(info "(emacs) Screen")')
    • Frames (`(info "(emacs) Frames")')