Sublime Forum

How to display the current font size?

#1

Hello,

Wondering if there is a setting, or a hacky way to display the current font size in the footer (because I change this on the fly sometimes using CTRL+= or CTRL±). Also perhaps a way to remove the display of “Spaces: 4” in the footer, as that value is quite static.

Thanks!

0 Likes

#2

There is a setting for controlling wether or not the indentation text/menu is displayed. It’s turned on by default, but you can turn it off in your preferences:

	// Display indentation in the status bar
	"show_indentation": true,

There is not a setting that displays the font size in the status bar, but information on the current font size is available to the plugin API, and plugins can add text to the status bar, so it’s possible to create such a plugin.

I don’t know of any offhand that do that, but you could try searching Package Control.

0 Likes