sublime安装使用

sublime笔记

昨天听同事说有个markdown插件不错,所以再次装了sublime感受一下~~
1. sublime官网地址:http://www.sublimetext.com/
2. sublime package安装教程:(网上搜索结果比较乱,还是看官网实时更新的比较靠谱一点哦)https://packagecontrol.io/installation
网址连接不太稳定,经常打不开,先拷贝一份~

  • 手动配置
If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control:

1. Click the Preferences > Browse Packages… menu

2. Browse up a folder and then into the Installed Packages/folder

3. Download Package Control.sublime-package and copy it into the Installed Packages/ directory

4. Restart Sublime Text
  • console配置(sublime text2)
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')
  • console配置(sublime text3)
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)

sublime基本用法

  • 调出控制台:ctrl + `
  • 调出package control:ctrl + shift + P

插件的使用

  • Emmet - html/css插件
  • 控制台install package -> Emmet
  • JsFormat - js格式化插件
发布了104 篇原创文章 · 获赞 26 · 访问量 16万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章