解決ST3 for python 輸入關鍵字print()帶出引數print(value, ..., sep, end, file, flush)的解決方法
阿新 • • 發佈:2018-12-26
{ // https://github.com/DamnWidget/anaconda/blob/master/Anaconda.sublime-settings "python_interpreter": "/usr/local/Homebrew/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/bin/python3.6", "complete_parameters": false,//自動補全函式時是否匹配必要引數 "complete_all_parameters": false,//自動補全函式時是否匹配所有引數 "suppress_word_completions": false,//禁止程式碼補全 "suppress_explicit_completions": false,//禁止精確補全 "auto_formatting": true,//程式碼格式檢查 "enable_docstrings_tooltip": false,// 顯示文件 "enable_signatures_tooltip": false,//在懸浮窗中顯示方法簽名 "display_signatures": false//顯示方法簽名 }
問題:
參考資料:http://blog.csdn.net/u012319317/article/details/73086382
需要進入:preferences -> package setting ->Anaconda ->Settings -Default:
將"complete_parameters":true設定成false,儲存後,即可。
Anaconda外掛安裝教程可參考:
https://www.cnblogs.com/nx520zj/p/5787393.html