Visual Studio Code python 代码快速自动提示

1、file --> setting->设置

    搜索 python 或者auto_complete

   setting.json

{
    "explorer.confirmDelete": false,
    // "python.linting.pylintArgs": [
    //     "--generate-members"
    // ],
    "editor.suggestSelection": "first",
    "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
    "python.jediEnabled": false,
    "python.autoComplete.addBrackets": true
}

 

2、TabNine  自动 补充 插件 

 

原文地址:https://www.cnblogs.com/cbugs/p/11102295.html