sublime 插件安裝packagecontrol
https://packagecontrol.io/installation
第一步:
Installation
Simple
The simplest method of installation is through the Sublime Text console. The console is accessed via the ctrl+` shortcut or the
import urllib.request,os,hashlib; h = ‘6f4c264a24d933ce70df5dedcf1dcaee‘ + ‘ebe013ee18cced0ef93d5f746d80ef60‘; 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)
This code creates the Installed Packages folder for you (if necessary), and then downloads the Package Control.sublime-package into it. The download will be done over HTTP instead of HTTPS due to Python standard library limitations, however the file will be validated using SHA-256.
Warning: Please do not redistribute the install code via another website. It will change with every release. Instead, please link to this page.
第二步:
sublime text安裝
進入提供的相關環境sublime Text目錄,點擊運行
調出installpackage界面
ctrl + shift + p
install package
常用工具包
AdvancedNewFile
Djaneiro
Emmet
less
sass
Git
Side Bar
HTML/CSS/JS Prettify
Python PEP8 Autoformat
SublimeCodeIntel
ColorPicker
OmniMarkupPreviewer
相關包簡介
常用包使用說明
AdvancedNewFile 可以創建文件,也可以連目錄和文件都創建 win+alt+n
Djaneiro django一些語法快速補齊功能,參考如下 https://packagecontrol.io/packages/Djaneiro
Emmet 快速縮寫html,tab補齊,
代碼簡寫擴展神器 ul#test>li*4 Ctrl+e展開上述指令
html:5 補齊html
p.foo 補齊class
p#foo 補齊id
> 子元素符號,表示嵌套的元素
+ 同級標簽符號
^ 可以使該符號前的標簽提升一行
Git 集成git ctrl+shift+p 輸入git
Side Bar 折疊目錄樹 ctrl+k ctrl+b
HTML/CSS/JS Prettify 格式化代碼 鼠標右鍵,從裏面選
Python PEP8 Autoformat 格式化python代碼 ctrl+shift+r
SublimeCodeIntel 自動匹配補全代碼 ctrl+f3 調到變量定義的地方
ColorPicker 屏幕拾色器 ctrl+shift+c
ConvertToUTF8 直接在菜單欄中可以轉,專為中文設計
sublime 插件安裝packagecontrol