vscode "python.jediEnabled": false,显示为未知配置设置
vscode "python.jediEnabled": false, showing as Unknown Configuration Setting
这是settings.json文件代码
{
"python.autoComplete.addBrackets": true,
"python.linting.enabled": true,
"python.pythonPath": "C:\Program Files\Python37\python.exe",
"python.jediEnabled": false,
"python.languageServer": "Microsoft"
}
在此"python.jediEnabled": false
中,显示错误,未知配置设置请给出解决方案
随着 vscode-python 于 2020 年 6 月 16 日发布,他们删除了 python.jediEnabled
设置以支持 python.languageServer
设置。
来自 changelog:
Removed python.jediEnabled
setting in favor of python.languageServer
. Instead of "python.jediEnabled": true
please use "python.languageServer": "Jedi"
.
(#7010)
这是settings.json文件代码
{
"python.autoComplete.addBrackets": true,
"python.linting.enabled": true,
"python.pythonPath": "C:\Program Files\Python37\python.exe",
"python.jediEnabled": false,
"python.languageServer": "Microsoft"
}
在此"python.jediEnabled": false
中,显示错误,未知配置设置请给出解决方案
随着 vscode-python 于 2020 年 6 月 16 日发布,他们删除了 python.jediEnabled
设置以支持 python.languageServer
设置。
来自 changelog:
Removed
python.jediEnabled
setting in favor ofpython.languageServer
. Instead of"python.jediEnabled": true
please use"python.languageServer": "Jedi"
. (#7010)