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萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章