Is it possible to disable text Scaling in Emacs?
Whenever I reverse the undo direction (C-x C–), the text size decreases.
I am using Emacs 24 with Prelude on Ubuntu 12.04
Is it possible to disable text Scaling in Emacs? Whenever I reverse the undo
Share
In addition to @xfq’s answer, you can turn off scaling by unsetting the key in your init file, or your .emacs file (available at ~/.emacs).
(remember that you can reload the file without restarting emacs using
M-x load-file .emacswhen you’re done editing)You can read more on these commands by typing
C-h f text-scale-adjust RET. text-scale-adjust is bound toC-x C-0, and resets any scaling performed byC-x C--orC-x C-+, as explained in that page.