sublime text 3 使用
Posted 随记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sublime text 3 使用相关的知识,希望对你有一定的参考价值。
1. 安装sublime:
http://www.sublimetext.com/3
2. 安装Package Control:
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)
回车运行。
3. 汉化:
按住ctrl+sift+p,输入"install package"(第一次运行可能需要几秒),然后输入Chinese,选择ChineseLocalization(回车或者鼠标单击击)。
4. 常规设置:
"首选项>设置-用户",输入以下代码,保存
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 }
5. 破解:
参考:http://www.xiumu.org/note/sublime-text-3.shtml
6. 插件安装:
以上是关于sublime text 3 使用的主要内容,如果未能解决你的问题,请参考以下文章
python 用于在终端中运行的sublime text 3的简单代码片段制作工具