我的个人博客:zhang0peter的个人博客
下载地址:Download - Sublime Text
下载后解压后,打开sublime_text.exe即可使用。
Windows用户使用快捷键CTRL+SHIFT+P打开command palette,或者手动打开:
输入install即可看到Install Package Control:
双击Install Package Control,然后自动安装插件控制器。
An error occured installing Package Control
Please check the Console for details
Visit https://packagecontrol.io/installation for manual instructions
出现上面的报错一般是网络问题,是因为packagecontrol.io被墙了,使用全局的梯子就可以解决问题,或者可以离线安装Package Control,教程如下:
1。下载地址:Releases · wbond/package_control
2。解压后重命名文件夹为重命名为Package Control。
3.打开Sublime Text 3,菜单->Preferences->Browse Packages…然后复制Package Control文件夹到该目录。
4.重启Sublime Text 3,如果菜单->Preferences有Package Setting和Package Control就说明安装成功。
5.Ctrl+Shift+p输入install选中Install Package回车就可以安装插件。
Windows用户使用快捷键CTRL+SHIFT+P打开command palette,或者手动打开command palette。输入install即可看到Package Control: Install Package :
选择后即可安装插件。
如果你运气不好地有报错如下:
Package Control
There are no packages available for installation
Please see https://packagecontrol.io/troubleshooting for help
同样是因为网络原因连接不到仓库,解决方法如下:
1。点击 Preferences > Package Settings > Package Control > Settings - User
2。
添加 “channels”: [“https://raw.githubusercontent.com/HBLong/channel_v3_daily/master/channel_v3.json”]后结果如下:
{
"channels":
[
"https://raw.githubusercontent.com/HBLong/channel_v3_daily/master/channel_v3.json"
],
"bootstrapped": true
}
然后就可以安装插件了。
插件介绍:With this plugin, you can edit and save the files which encodings are not supported by Sublime Text currently, especially for those used by CJK users, such as GB2312, GBK, BIG5, EUC-KR, EUC-JP, etc.
功能说明:ConvertToUTF8 能将除UTF8编码之外的其他编码文件在 Sublime Text 中转换成UTF8编码,在打开文件的时候一开始会显示乱码,然后一刹那就自动显示出正常的字体,当然,在保存文件之后原文件的编码格式不会改变。
类似于代码匹配,可以匹配括号,引号等符号内的范围。
使用方法:系统默认为白色高亮,可以使用链接所述方法进行自定义配置
GitHub仓库地址:BracketHighlighter: Bracket and tag highlighter for Sublime Text http://facelessuser.github.io/BracketHighlighter/
侧栏右键功能增强,非常实用。
GitHub仓库地址:emmet-sublime: Emmet for Sublime Text
GitHub仓库地址:SublimeCodeIntel/SublimeCodeIntel: ? Full-featured code intelligence and smart autocomplete for Sublime Text
SublimeCodeIntel是一个代码补全的插件
GitHub仓库地址:SublimeLinter/SublimeLinter: The code linting framework for Sublime Text 3
GitHub仓库地址:n1k0/SublimeHighlight: A humble SublimeText package for exporting highlighted code as RTF or HTML
先添加仓库: https://github.com/n1k0/SublimeHighlight/tree/python3
然后安装
推荐配置如下:
{
"theme": "monokai",
// "linenos": "inline",
"noclasses": true,
"fontface": "Menlo"
}
GitHub仓库地址:wuub/SublimeREPL: SublimeREPL - run an interpreter inside ST2 (Clojure, CoffeeScript, F#, Groovy, Haskell, Lua, MozRepl, NodeJS, Python, R, Ruby, Scala, shell or configure one yourself)
GitHub仓库地址:Tian-Changsong/Verilog-Automatic: Automatically generate verilog module ports,instance and instance connections ,for sublime text 2&3
此插件仍在更新
原先计组课上用ISE,写Verilog 时,苦于没有代码高亮的插件。装了这2个插件后,.v文件自动高亮,代码补全了。
GitHub仓库地址:timonwong/SublimeAStyleFormatter: SublimeAStyleFormatter is a code formatter/beautifier for Sublime Text 2 & 3. It provides ability to format C/C++/C#/Java files.
注意:Anaconda插件需要手动配置一下,不然会有白线,在anaconda的setting-uer中填写如下:
{
"python_interpreter":"C:/Users/peter/Anaconda3/python.exe",
"anaconda_linting":false
}
在设置里添加如下命令:
"tab_size": 4,
"translate_tabs_to_spaces": true,