Loading... # SublimeText调教日志 1. 底包使用的是果核那边的[Sublime Text 3 v3.3176 绿色破解版](https://www.ghxi.com/sublimetext.html) 自带了`ConvertUTF8`,`LiveReload`,`Package Control`,`LocalizedMenu`,`SideBarEnhancements` 2. 插件 - [Alignment](https://github.com/wbond/sublime_alignment) 自动对齐等号 - [AutoFileName](https://sublime.wbond.net/packages/AutoFileName) 快捷输入文件名 - [AutoPEP8](https://github.com/wistful/SublimeAutoPEP8) 一款蛮好用的Python格式化插件 - [Bracket Highlighter](https://github.com/facelessuser/BracketHighlighter) 括号匹配(<tag></tag>>)也行 - [Color Picker](https://sublime.wbond.net/packages/ColorPicker) 调色板 - [CoolFormat](https://github.com/akof1314/Sublime-CoolFormat) 格式化插件蛮好用的,~~实际上是为它打过代码~~ - [DocBlockr](https://sublime.wbond.net/packages/DocBlockr) 生成优美注释 - [Emmet](https://sublime.wbond.net/packages/Emmet) http://docs.emmet.io/ - ExpandTabsOnSave 这个是自己添加的用来把代码和文章里的Tab全部换成空格 ```python import sublime import sublime_plugin import os class ExpandTabsOnSave(sublime_plugin.EventListener): def on_pre_save(self, view): if view.settings().get('expand_tabs_on_save') == 1: view.window().run_command('expand_tabs') ``` - [GBK Support](https://github.com/chengsu/sublime-gbk-support) GBK编码支持 - [Git](https://github.com/kemayo/sublime-text-git) Git插件 - [HTML-CSS-JS Prettify](https://github.com/victorporof/Sublime-HTMLPrettify) CoolFormat对这仨的格式化确实不是很好所以用这个 - [jQuery](https://github.com/mrmartineau/Jquery) jQ函数提示 - [MarkdownPreview](https://github.com/facelessuser/MarkdownPreview) 用来在浏览器预览Markdown的 - [Nodejs](https://sublime.wbond.net/packages/Nodejs) node代码提示 - [SublimeCodeIntel](https://www.sublimecodeintel.com/) 代码提示和补全 - [SublimeLinter](http://www.sublimelinter.com/en/stable/) 代码检查 - [Trailing spaces](https://github.com/SublimeText/TrailingSpaces) 检测并一键去除代码中多余的空格 最后修改:2022 年 08 月 10 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 0 如果觉得我的文章对你有用,请随意赞赏