Sublime 插件收集器

插件

  • Emmet 快速生成html
    -Emmet 基本操作
  • SideBar 增强的侧边栏
  • Docblockr 增强js注释
  • Alignment 等号对齐
  • AutoFileName: 文件路径自动提示

安装Package Control的插件

在sublime下按快捷键ctrl+`,呼出命令行。如果你的是sublime3,输入:

import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; 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)

如果你是sublime2,输入:

import urllib2,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')
Sublime 插件收集器_第1张图片
呼出命令行

安装完成后,按快捷键ctrl+P,呼出命令工具。再输入install,即可输入插件名字进行安装。

举个栗子,我想安装Emmet,输入该名字。

Sublime 插件收集器_第2张图片
Paste_Image.png

参考

jikeytang/sublime-text

转载,请表明出处。总目录前端经验收集器

你可能感兴趣的:(Sublime 插件收集器)