The current font size of the file sidebar is to small for me. How can I make it larger?
相关问题
- How to run code in Sublime text 2 python
- How do you configure MinGW with Sublime Text 3?
- How to add custom HTML tags in Sublime Text 3
- Not able to run selected lines in REPL R in sublim
- Mac OS X /bin/bash: python: command not found in s
相关文章
- trouble getting sublime to execute with linux term
- Automatically select pasted text in Sublime Text 3
-
Perl with Sublime Text 2:
not working - Show info about current character in status bar in
- Sublime Text 3: how to bind a shortcut to a specif
- How to make Sublime Text 3 default templates
- How can a Sublime Text build system access the con
- In Sublime Text 3, how to have shortcuts for “Buil
Select
Preferences / Browse Packages…
, and go toTheme - Default
directory.Open
Default.sublime-theme
with your editor and search forsidebar_label
string. You should find something like:You can add here the font size you prefer:
Thanks! Some other settings to change font size (in these examples, smaller) of ALL the visible things!
Note that if you have a Project open (a folder) and the tabs and status bar showing, when you hit save you should see the changes realtime.
Sidebar Tree
Tabs Open Files
Status Bar
(I couldn't find where to set the font for the Status Bar, this will squish the bottom bar down though)
Method probably work on the both version of ST
check you current setup theme:
1.1 open preference/settings user
1.2 cmd + f and type theme
1.3 you found your theme (may be not default, may be soda dark;) )
type packageresourceviewer
4.1 type theme and select theme
4.2 select your current theme file (for st3 dark3 theme)
4.3 cmd +f to find "sidebar entry"
4.4 type in the block: "font.size": NUMBER to the options
4.5 save
enjoy ;)
This question has been answered for Sublime Text 2 but worth mentioning if you are in version 3 is that you can simply copy a package file and place it in your ../Packages/User directory then override the settings there.
EDIT:
You may have to dig around some in order to find where ST3 files were placed during installation.
I'm using Ubuntu and ST3's Main Package files are located at opt/sublime_text/packages. I then copy the package to override into the .config/sublime-text-3/Packages/User directory and then make my edits to that package.
In Sublime Text 3, select Preferences >> Settings - User from the menubar, then add dpi_scale config to the file and save. That's all.