该插件依赖到nodejs环境
1.安装
在Sublime Text中,按下Ctrl+Shift+P调出命令面板;
输入install 调出 Install Package 选项并回车;
输入pretty,并在列表中选择HTML-CSS-JS Prettify后回车即可安装
2.使用
打开一个压缩的jquery.min.js文件,按下Ctrl+Shift+H
如果使用无效果,有可能是中文文件名,或路径的问题,可以打开控制台进行调试 Ctrl + ~
解决中文文件名,路径问题
第83 node_path = PluginUtils.get_node_path()
…
output = PluginUtils.get_output(cmd)
替换成
node_path = PluginUtils.get_node_path().encode("utf-8")
script_path = PLUGIN_FOLDER + "/scripts/run.js"
if self.view.file_name() is None:
file_path = None
else:
file_path = self.view.file_name().encode("utf-8")
cmd = [node_path, script_path, temp_file_path, file_path or "?"]
output = PluginUtils.get_output(cmd)
推荐阅读:
Essential Sublime Text 2 Plugins and Extensions
http://code.tutsplus.com/tutorials/essential-sublime-text-2-plugins-and-extensions–net-24173
Sublime Text 使用介绍、全套快捷键及插件推荐
http://www.daqianduan.com/4820.html
实用的sublime插件集合 – sublime推荐必备插件
http://www.xuanfengge.com/practical-collection-of-sublime-plug-in.html