##安装 Sublime text2 下载地址 Mac 版本 dmg 直接安装 ##安装 Package Install 到官网找到安装命令(for Python2.7) 复制如下:
import urllib2,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; 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(' ', ' ')).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')Ctrl+`然后输入上述代码并回车 重启 sublime text2 ##安装 Pretty JSON 手动安装, 参考Pretty JSON官网 复制如下:
manually install: cd <Packages directory> (for example on Mac it is ~/Library/Application\ Support/Sublime\ Text\ 2/Packages or ~/Library/Application\ Support/Sublime\ Text\ 3/Packages) git clone https://github.com/dzhibas/SublimePrettyJson.git##使用 选中 json 字符串(默认全选) ####方式1 使用快捷键格式化: cmd+ctrl+j ####方式2 使用快捷键: Ctrl+Shift+P 输入 Pretty Json选择Pretty JSON: Format (Pretty Print) JSON
