윈도우즈 sublime text 에디터 한글깨짐 현상 해결
페이지 정보
작성자
본문
sublime text3 한글깨짐 현상 해결
다운로드 받으면 ConvertToUTF8-master
이 파일을 아래 경로에 넣어주면된다.(Korean 폴더가 없으면 생성할것)
그럼 한글이 잘 나온다.
다른짓 하지말고 그냥 이렇게 하자.
댓글목록
오원장님의 댓글
오원장 이름으로 검색 작성일
환경설정 : Preferences > Settings-User
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings.
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Monokai.sublime-color-scheme",
"default_line_ending": "unix",
"draw_minimap_border": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"font_face": "D2Coding",
"font_size": 13,
"highlight_line": true,
"highlight_modified_tabs": true,
"update_check": false,
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"overlay_scroll_bars": "enabled",
"rulers":
[
80,
120
],
"show_encoding": true,
"show_line_endings": true,
"tab_size": 4,
"theme": "Default.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true
}
오원장님의 댓글

sublime text 에디터 설명서 :
https://blog.naver.com/vinylx/220515242629
오원장님의 댓글
오원장 이름으로 검색 작성일오원장님의 댓글

내가 설정한 기본 설정값
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Monokai.sublime-color-scheme",
"default_line_ending": "unix",
"draw_minimap_border": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"font_face": "Malgun Gothic",
"font_size": 12,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"overlay_scroll_bars": "enabled",
"rulers":
[
80,
120
],
"show_encoding": true,
"show_line_endings": true,
"tab_size": 4,
"theme": "Default.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"update_check": false,
"word_wrap": true
}