sublime text 3 사이드바 아이콘


Sublime text 2 버전에는 사이드바 항목에 아이콘이 없었는데 3 버전에는 아이콘이 추가됐다. 이쁘긴 한데 문제가 좀 있다.

  1. 딱히 쓸모가 없다
  2. 아이콘 때문에 사이드바 width를 늘려야한다 (가장 큰 이유)


없애는 방법은 간단하다.



1. PackageResourceViewer를 설치한다

2. Command Palette를 열고 (Ctrl+Shift+P) 다음과 같이 들어가서 sublime-theme 파일을 연다.

  • PackageResourceViewer: Open Resource
  • --> Theme - Default
  • --> Default.sublime-theme

그 다음 아래처럼 content_margin 항목을 수정한다. 원래는 아마 [0, 8]로 되어 있었던 것 같다.

{
    "class": "icon_file_type",
    "content_margin": [0,0]
},
{
    "class": "icon_folder",
    "content_margin": [0,0]
},
{
    "class": "icon_folder_loading",
    "content_margin": [0,0]
}



그럼 위 사진처럼 아이콘이 사라진다.

원래대로 복구하려면 content_margin을 [0, 8]로 수정하면 된다.


반응형