美文网首页
0X05 sublime text 3 插件

0X05 sublime text 3 插件

作者: 唐古拉老山羊 | 来源:发表于2017-03-31 15:41 被阅读25次

    Package Control

    import urllib.request,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; 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)

    其中 text 2 版本的

    import urllib2,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; 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 server  静态服务器

    Emmet       它让编写 HTML和CSS代码变得简单,节省大量时间。

    Git   Git功能

    Bracket Highlighter      类似于代码匹配,可以匹配括号,引号等符号内的范围。

    SideBarEnhancements = 侧栏右键功能增强

    ConvertToUTF8

    功能:文件转码成utf-8

    相关文章

      网友评论

          本文标题:0X05 sublime text 3 插件

          本文链接:https://www.haomeiwen.com/subject/ywuhmttx.html