标签:
http://www.sublimetext.com/3
ctrl+`或者 View > Show Console
输入:
import urllib.request,os,hashlib; h = ‘2915d1851351e5ee549c20394736b442‘ + ‘8bc59f460fa1548d1514676163dafc88‘; pf = ‘Package Control.sublime-package‘; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( ‘http://packagecontrol.io/‘ + pf.replace(‘ ‘, ‘%20‘)).read(); dh = hashlib.sha256(by).hexdigest(); print(‘Error validating download (got %s instead of %s), please try manual install‘ % (dh, h)) if dh != h else open(os.path.join( ipp, pf), ‘wb‘ ).write(by)
回车运行。
按住ctrl+sift+p,输入"install package"(第一次运行可能需要几秒),然后输入Chinese,选择ChineseLocalization(回车或者鼠标单击击)。
"首选项>设置-用户",输入以下代码,保存
1 { 2 "line_numbers": true, //是否显示行号 3 "gutter": true, //是否显示边列 4 "draw_centered": false, //是否居中显示 5 //"wrap_width": 170, //换行宽度(单位:字符) 6 "word_wrap": true, //是否自动换行 7 "scroll_past_end": true, //滚动能否超过结尾 8 "font_face": "微软雅黑", //字体 9 "font_size": 10, //字体大小 10 "line_padding_top": 1, //行高 11 "line_padding_bottom": 1, 12 "tab_size": 2, //TAB缩进宽度 13 "translate_tabs_to_spaces": false, //自动转换TAB为空格 14 "update_check": false, //禁用自动更新 15 }
参考:http://www.xiumu.org/note/sublime-text-3.shtml
标签:
原文地址:http://www.cnblogs.com/linx/p/5549204.html