How to change size of split screen emacs windows?

后端 未结 7 495
无人共我
无人共我 2020-11-28 00:34

I have emacs split horizontally - on top I\'m editing Perl code, the bottom is the shell. By default emacs makes the two windows equal in size, but I\'d like the shell buffe

7条回答
  •  温柔的废话
    2020-11-28 00:56

    I put these in my .emacs:

    (global-set-key (kbd "") 'shrink-window)
    (global-set-key (kbd "") 'enlarge-window)
    (global-set-key (kbd "") 'shrink-window-horizontally)
    (global-set-key (kbd "") 'enlarge-window-horizontally)
    

提交回复
热议问题