Sublime Forum

Change font in diff view/ bug or intended

#1

Does the font face/size in preference supposed to apply to the diff view? changing it seems to only change the commit message font, and “binary file changed” message in the diff, but they are not applied to the actual diff view? can I change it?

0 Likes

#2

Font settings from preferences dialog are stored in Packages/User/Preferences.sublime-settings and apply to all edit controls (e.g. commit message, diff views, …) by default. They do not apply to UI elements such as commit tree, locations, files (in sidebar), tabs command palette items, etc.

It’s basically the same logic as used by Sublime Text.

These general user preferences can be overridden by a widget-specific or syntax-specific settings, specified by either a 3rd-party theme or a related file in Packages/User.

  • Diff View specific settings are specified in files, called: Diff.sublime-settings
  • Commit Message specific settings are specified in files, called Commit Message.sublime-settings and Commit Message (Read Only).sublime-settings.
1 Like

#3

got it, thanks!

0 Likes