Sublime Text 經常使用環境和插件配置

有時重裝系統完,不少軟件須要從新配置一下,又不肯意用某種「不太純淨」的方式保留這些配置,因此就在這裏記載一下經常使用的配置。css

python運行環境

其實sublime是自帶python的…這個很少提了html

Tools - Build System - New Build Systemhtml5

在新文件裏輸入node

{
    "cmd": ["python", "-u", "$file"],
    "path":"C:/Python27",
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python"
}

其中C:/Python27就是python安裝的目錄,保存時名字起名爲Python27.sublime-build就新建了一個build system,能夠使用ctrl+b直接運行Python代碼了python

package control安裝

打開sublime,ctrl+~打開控制檯複製下面的代碼後回車便可
sublime text3:ui

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

sublime text2:url

import urllib2,os; 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( ))); open( os.path.join( ipp, pf), 'wb' ).write( urllib2.urlopen( 'http://sublime.wbond.net/' +pf.replace( ' ','%20' )).read()); print( 'Please restart Sublime Text to finish installation')

經常使用插件

Prefenrences - Package Control - Install Package.net

來安裝插件插件

  • html5調試

  • jsformat

  • python: JEDI(自動補全)

  • CodeIntel:各種語言自動補全+成員/方法提示(強烈推薦)

  • SublimeREPL:用於運行和調試一些須要交互的程序(E.G. 使用了Input()的程序)

  • Bracket Highlighter:括號匹配及高亮

  • jQuery:方便寫jQuery

  • tag:html對齊

  • prettify html,js,css對齊 須要安裝nodejs

相關文章
相關標籤/搜索