sublime text 2 JS 代码提示和代码格式化format

来源:互联网 发布:2017淘宝店名可以改吗 编辑:程序博客网 时间:2024/06/06 16:44

JS 代码提示

安装:AndyJS2 和jQuery


JS 代码格式化

安装:JsFormat 

使用快捷键:ctrl + alt + f


安装方式:

Ctrl + Shift + P  --> Package Control --> install package---> plugins name


Package Control 调不出来解决办法:

安装Package Control;

sublime text2 :

Ctrl+` 或者View > Show Console 进入console view ;

然后将相关命令复制进去并回车。

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')


参考:https://packagecontrol.io/installation#st2

0 0
原创粉丝点击