2015年10月25日 星期日

讓 Sublime Text 使用 Python 3 做為建置系統

在 Sublime Text 中依序按一下 [Tools] -> [Build System] -> [New Build System],然後在出現的設定文件中輸入下列內容(JSON 格式):

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

然後存檔為 python.sublime-build 即可。