Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ok, so maybe this is more a question for the superuser site but I figured there'd be a hell of a lot more emacs users on stackoverflow.

Basically I often have my emacs split into about 4 windows so I can look at a bunch of buffers at the same time.. however I'd like to be able to C-x 1 (make the window the same size as emacs) and then somehow restore back to my nice 4 window layout I was just looking at.

Is there an easy way to do this or do I need some elisp / lisp (note: I don't know ANY elisp.)

Thanks! John.

share|improve this question
Note: When I say 'window' I mean 'pane' within emacs. Also note I'm using emacs on Ubuntu under X. – John Hunt Oct 3 '11 at 23:19

5 Answers

up vote 5 down vote accepted

Try winner-mode:

http://www.emacswiki.org/emacs/WinnerMode

With winner-mode enabled, you can restore your previous window configuration with C-c <left>.

share|improve this answer
Spot on, nice and easy too :) – John Hunt Oct 4 '11 at 0:42

I'm sure there are a few different solutions for this, but I use:

C-x r w x to store the window configuration and C-x r j x to restore it, where x is the name of the register to store it in.

Then, I also like winner-mode which allows swiching back to previous window configurations with winner-undo and winner-redo (which I bound to C-^ and C-c ^ because I can't stand the bindings C-c <left> and C-c <right> that are set by default).

share|improve this answer

I use escreen.el for multiple workspace management, but as a side effect, each workspace remembers the window configuration. So, you may find it a useful package.

Other people suggest elscreen instead of escreen, but I haven't used this package yet. So I can't say if it also preserves window configuration of workspaces.

share|improve this answer

You should also try C-x 0 in the window you'd like to close, as it will close that specific window but not any other. I think that most people wants this most of the times they use C-x 1.

share|improve this answer

http://www.emacswiki.org/emacs/frame-cmds.el

See commands maximize-frame and restore-frame (aka toggle-frame). There are also commands maximize-frame-horizontally, maximize-frame-vertically, restore-frame-horizontally, and restore-frame-vertically.

share|improve this answer
While the terminology in the question is not very clear, I do believe from the C-x 1 example that this question is not at all about frames. – tripleee Oct 7 '11 at 5:11
Oops, sorry -- yes, you're no doubt right about that. In that case, the answer about saving and restoring the window configuration is appropriate. – Drew Oct 8 '11 at 7:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.