I would like to increase my font size, so I used the C-x C-=
keybinding, followed by =
to further increase the size. However, it stops zooming far too soon, and I realized that I can only cycle through 8 levels of zoom. I can zoom in twice past default and zoom out 5 times past default. Is there a way to increase the zoom range?
Additionally, when I continue trying to zoom (by pressing =
) after reaching the max zoom level, I am unable to zoom out (by pressing -
) until I press -
the same number of times that I pressed =
. For example, if at my max zoom level, I push =
three times, I must push -
three times with no results before I can push -
again to zoom out. It seems as if the zoom levels are being recorded, but not rendered.
Here is the command that I am using via C-h k C-x C-=
C-x C-= runs the command text-scale-adjust, which is an interactive
autoloaded compiled Lisp function in `face-remap.el'.
It is bound to C-x C-0, C-x C-=, C-x C--, C-x C-+.
(text-scale-adjust INC)
Adjust the height of the default face by INC.
INC may be passed as a numeric prefix argument.
The actual adjustment made depends on the final component of the
key-binding used to invoke the command, with all modifiers removed:
+, = Increase the default face height by one step
- Decrease the default face height by one step
0 Reset the default face height to the global default
...