programing

Sublime Text 2 파일 사이드 바의 글꼴 크기를 변경하는 방법은 무엇입니까?

nasanasas 2020. 12. 11. 08:17
반응형

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.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;) )

  2. install package: "PackageResourceViewer"
  3. cmd + shift + p - for open command pallete
  4. 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

  5. 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.
}

참고URL : https://stackoverflow.com/questions/13781833/sublime-text-2-how-to-change-the-font-size-of-the-file-sidebar

반응형