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

I'm interested how can I resize split windows in emacs when I'm in console mode?

I opened my file with:

emacs myfilename.txt -nw

now when I split my window with:

C-x 2 

or

C-x 3

how can I resize new windows?

share|improve this question
1  
This question could be rephrased as "how to resize emacs window with keyboard commands" or similar. – ExplodingRat Jun 11 '11 at 18:07
Possible duplicate of How to Change size of split screen emacs windows? – phils Jan 14 at 3:47

2 Answers

up vote 14 down vote accepted

Try M-x enlarge-window and M-x shrink-window.

You can specify the number of lines by which to enlarge or shrink with the prefix argument, e.g. to enlarge a window by six lines, type:

C-u 6 M-x enlarge-window

By default enlarge-window is bound to C-x ^. shrink-window is not bound to any shortcut by default, but you can use a negative prefix argument with C-x ^ to get shrinkage.

So you could get the same effect as above by typing:

C-u 6 C-x ^ (enlarge)

C-u - 6 C-x ^ (shrink)

share|improve this answer

If you split window vertically with C-x 2, use C-x ^ and M-x shrink-window. If you split horizontally with C-x 3, use C-x { and C-x } to enlarge and shrink.

share|improve this answer

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.