0

Every time I dock/undock I must hit 10 times M-x zoom-frm-in. Since I don't understand the dotimes example in the lisp tutorial I need to know how you would automate this task.

Drew
  • 75,699
  • 9
  • 109
  • 225
jjk
  • 705
  • 4
  • 16
  • Would just changing the value of option `frame-zoom-font-difference` help? – Drew Jan 10 '20 at 16:48
  • Your [0]answer pointed me to the final solution (see comment there) [0] https://emacs.stackexchange.com/a/50803/21118 – jjk Jan 12 '20 at 17:25

1 Answers1

0

(dotimes (number 10) (zoom-frm-in))

Found here:

https://emacs.stackexchange.com/a/2507/21118

jjk
  • 705
  • 4
  • 16