I'm using Spacemacs, in term mode and on a mac. While I can adjust the standard font size I am often moving from/to a different monitor, and I want to be able to tweak the font size for the moment. Is there an easier way than changing the font size in my config file?
Asked
Active
Viewed 421 times
1 Answers
1
On a mac it is CMD +/-
.
To learn more about this, ctrl h f
lets you learn about functions and their bindings. In this case text-scale-adjust
, as described in other answers and blog posts. The docs say it is bound to C-+
, but in this case, C
is actually the command key, not the control key.

steel
- 121
- 5
-
I don't use Mac but I have seen the same for, I think, any software out there.. Microsoft stuff, Adobe stuff, etc: Ctrl (Win) <-> Cmd (Mac) – Kaushal Modi Aug 24 '16 at 16:55
-
@KaushalModi what's interesting is that looking up a method,
C-h f
, requires the control key. So it seems like maybe it means different things at different times on a mac? – steel Aug 24 '16 at 17:06 -
1That's definitely odd.. On unix-based systems and Windows at least, the
C-
means the exact same thing inC-h f
andC-x C-=
. To understand this better, I would first see in anemacs -Q
session (without loading any config) ifC-
symbolizes.. is it consistently Ctrl, or consistently Cmd, or not consistent? – Kaushal Modi Aug 24 '16 at 17:09 -
1
text-scale-adjust
command or apply one of the solutions mentioned here: http://emacs.stackexchange.com/q/7583/115 – Kaushal Modi Aug 24 '16 at 16:32text-scale-adjust
, or is there some way to use it out of the box? – steel Aug 24 '16 at 16:37emacs -Q
(without loading custom configs like spacemacs),text-scale-adjust
is bound toC-x C-=
. After hitting that, you simply hit+
,-
,0
as you need. – Kaushal Modi Aug 24 '16 at 16:40C-h f text-scale-adjust
(not sure if spacemacs bindsdescribe-function
toC-h f
or something else). – Kaushal Modi Aug 24 '16 at 16:41C-h f
tip, that's great. The documentation there confirms what you're saying, but those bindings aren't working for me. – steel Aug 24 '16 at 16:42C
iscmd
on a mac. Now they work. Thank you @KaushalModi – steel Aug 24 '16 at 16:47