Sublime Text 2 파일 사이드 바의 글꼴 크기를 변경하는 방법은 무엇입니까?
파일 사이드 바의 현재 글꼴 크기가 너무 작습니다. 어떻게 더 크게 만들 수 있습니까?
을 선택 Preferences / Browse Packages…
하고 Theme - Default
디렉토리 로 이동합니다 .
Default.sublime-theme
편집기로 열고 sidebar_label
문자열을 검색하십시오 . 다음과 같은 것을 찾을 수 있습니다.
{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false
}
여기에 원하는 글꼴 크기를 추가 할 수 있습니다.
{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false,
"font.size": 14.0
}
감사! 보이는 모든 것의 글꼴 크기 (이 예에서는 더 작음)를 변경하는 몇 가지 다른 설정!
프로젝트가 열려 있고 (폴더) 탭과 상태 표시 줄이 표시되는 경우 저장을 누르면 변경 사항이 실시간으로 표시됩니다.
사이드 바 트리
{
"class": "sidebar_tree",
"row_padding": [0, 0],
"indent": 6,
"indent_offset": 17,
...
{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false,
"font.size": 8.0
...
탭 열기 파일
{
"class": "tabset_control",
...
"content_margin": [0, 0, 3, 1],
"tab_overlap": 24,
"tab_width": 180,
"tab_min_width": 48,
"tab_height": 18,
...
{
"class": "tab_label",
...
"font.size": 8.0
...
상태 표시 줄
{
"class": "status_bar",
...
"content_margin": [0, 0, 0, 0]
...
(상태 표시 줄의 글꼴을 설정할 위치를 찾을 수 없습니다. 그래도 하단 표시 줄이 뭉개집니다)
방법은 아마도 ST의 두 버전 모두에서 작동합니다.
현재 설정 테마 확인 :
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;) )
- install package: "PackageResourceViewer"
- cmd + shift + p - for open command pallete
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.
{
......,
"dpi_scale": 1.5 //set this value as your need.
}
'programing' 카테고리의 다른 글
TypeScript는 클래스에 대한 이벤트를 지원합니까? (0) | 2020.12.11 |
---|---|
JavaScript : 1 분마다 실행할 코드 가져 오기 (0) | 2020.12.11 |
Linux free는 높은 메모리 사용량을 표시하지만 top은 그렇지 않습니다. (0) | 2020.12.11 |
Elastic Beanstalk nginx 지원 프록시 서버를 HTTP에서 HTTPS로 자동 리디렉션하려면 어떻게해야합니까? (0) | 2020.12.11 |
소켓 io 연결 인증 (0) | 2020.12.11 |