본문 바로가기
생활일기/tip tech

Sublime Text 3에서 Vintage Mode 활성화하기

by 신일석 2014. 11. 18.

간단한 작업인데 한 번 설치하면 오랫동안 다시 해 볼 기획가 없다보니

할때마다 엄청헤메곤하는 것이

Sublime Text 3에서 Vintage Mode를 활성화시키는 설정이다.


방법은 간단하다.


Preferences/Settinf-User를 선택

아래와 같이 "ignored_packages" : []를 입력하고 저장하면 끝.


매번 활성화하가 되지 않아 헷갈리는 이유는

위와 같이 적용을 하고 Sublime Text 3를 재시작하면 Insert Mode로 시작하기 때문에 적용이 되지 않은 것으로 착각하고 다른 방법을 찾가 구글링하고 계속시도하게 되기 때문임.


하지만, 'Esc'를 누르면 바로 'Command Mode'로 바뀌면서 Vintage 모드를 사용할 수 있게 된다.




// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by file type specific settings.
{
    "bold_folder_labels": true,
    "caret_style": "phase",
    "color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme",
    "fade_fold_buttons": false,
    "font_face": "나눔고딕코딩",
    "font_size": 11,
    "highlight_line": true,
    "ignored_packages": [    ],
    "line_padding_bottom": 1,
    "line_padding_top": 1
}