zoukankan      html  css  js  c++  java
  • vscode配置python之settings.json 智能提示

    vscode编写Python的智能提示,搞了好久,参考了各种网上配置,如下,备份方便自己查找。

    {
        "workbench.iconTheme": "material-icon-theme",
        "files.autoSave": "afterDelay",
        "python.autoComplete.extraPaths": [
            "C:\software\Python\Python35\Lib\site-packages",
            "C:\software\Python\Python35\Scripts",
        ],
        "files.autoGuessEncoding": true,
        "editor.fontSize": 16,
        "terminal.integrated.shellArgs.windows": ["/K chcp 65001 >nul"],
        "terminal.integrated.fontFamily": "Lucida Console",
        "editor.suggestSelection": "first",
        "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
        "code-runner.executorMap": { 
            "python": "set PYTHONIOENCODING=utf-8 && python -u" 
        },
        "python.jediEnabled": false,
        "python.autoComplete.addBrackets": true
    }

    参考了各种链接:https://www.cnblogs.com/yuer20180726/p/10942372.html

    不一一注明了

    谢谢!

  • 相关阅读:
    4d
    加载数据
    刘亮给的帮助
    加载数据
    选中并高亮显示
    ArcEngine
    接口编程
    好的参考文献
    在本地安装 wordpress
    C#读取EXCEL数据
  • 原文地址:https://www.cnblogs.com/zhzhang/p/11912470.html
Copyright © 2011-2022 走看看