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?
|
I'm interested how can I resize split windows in emacs when I'm in console mode? I opened my file with:
now when I split my window with:
or
how can I resize new windows? |
|||||||
|
|
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 So you could get the same effect as above by typing: C-u 6 C-x ^ (enlarge) C-u - 6 C-x ^ (shrink) |
||||
|
|
|
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. |
|||
|
|