其他

Sublime Text 3 使用

2018-08-13  本文已影响0人  dasdadf
Sublime Text 3

重装系统,从头开始配置

安装 package control

插件管理工具

The simplest method of installation is through the Sublime Text console. The console is accessed via the ctrl+` shortcut or the View > Show Console menu. Once open, paste the appropriate Python code for your version of Sublime Text into the console.

import  urllib.request,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_path();urllib.request.install_opener(urllib.request.build_opener(urllib.request.ProxyHandler()));open(os.path.join(ipp,pf),'wb').write(urllib.request.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read())

安装完成后重启程序
尽量还是用新版本ST3~旧版本可能在安装包管理程序时有问题


用Package Control安装插件

按下Ctrl+Shift+P调出命令面板
输入install 调出 Install Package 选项并回车,然后在列表中选中要安装的插件。


Python相关插件

自动完成插件:
自动完成的快捷键是Tab和Enter,如果在html文件中,输入cl按下tab或Enter,即可自动补全为。

自动修改符合PEP8
出现方框时Ctrl+Shift+R即可更改

将Markdown文件转为Html文件,使之可以在浏览器内预览
将Markdown文件保存后,使用Ctrl + Shift + P调出管理器,输入mp(markdown preview的缩写),随后选择markdown,便可在浏览器内预览内容。
用户设置

{
    "enable_mathjax": true,     #支持mathjax数学公式
    "enabled_parsers": ["markdown"],    #只是用markdown的解析器
}

其它

头文件处理

<img src=".\2.png"></image>

支持本地,支持缩放等等~

| Name | Phone |
|-

随后按Tab键即可


用户配置

字体

preferences=>Settings-user
在弹出的文件内输入

"font_face": "Courier New bold",    #字体名称
"font_size": 12.0                   #字体大小

关闭更新提示

"update_check":false

支持直接运行perl脚本

Tools->Build System->New Build System.输入以下内容:

{
 "cmd": ["perl", "-w", "$file"],
 "file_regex": ".* at (.*) line ([0-9]*)",
 "selector": "source.perl"
 }

相关快捷键

Alt+Shift+1/2/3~
Ctrl + L
Ctrl + W
Ctrl + Shift + /    #至少在安装了几个Python插件后的Py文档中可以插入'#'(不同的文件类型中有不同的功能)
Ctrl + Z
上一篇下一篇

猜你喜欢

热点阅读