Emacs font sizing with Ctrl key and mouse scroll

前端 未结 5 1768
庸人自扰
庸人自扰 2020-12-31 06:17

notepad++ allow me to increase the font size when I hold the Ctrl Key and rotate the mouse middle scroll button to forward.

In the same way, the when I ho

5条回答
  •  北海茫月
    2020-12-31 06:50

    with emacs23 you can add following lines to your .emacs.el:

    (global-set-key (kbd "") 'text-scale-decrease)
    (global-set-key (kbd "") 'text-scale-increase)
    

提交回复
热议问题