• vscode 编辑python文件


    1 安装python 自动姿势

    Chinese # 换成中文

    path Autocomplete 路径自动补全

    Vetur vue文件补全

    配置文件 首选项-设置 应用程序 在 seyying.json中配置

    {
        "editor.minimap.enabled": false,
        "workbench.iconTheme": "vscode-icons",
        "editor.fontSize": 15,
        "files.autoSave": "onFocusChange",
        "emmet.triggerExpansionOnTab": true,
        "emmet.showSuggestionsAsSnippets": true,
        "editor.renderIndentGuides": false,
        "files.associations": {
            "*.vue": "html"
        },
        "powermode.enabled": true,
        "background.useFront": false,
        "background.useDefault":false,
        "background.customImages": ["file:///c:/123.jpg"],
        "terminal.integrated.rendererType": "dom",
        "workbench.colorTheme": "Visual Studio Dark",
        "background.enabled": false,
        "html.format.enable": false,
        "editor.wordWrap": "on",
        "code-runner.saveAllFilesBeforeRun": true,
        "code-runner.runInTerminal":true,
            "code-runner.fileDirectoryAsCwd": true,
            "files.autoSaveDelay": 200,
        "search.followSymlinks": false,
    "python.jediEnabled": true,
    "python.autoComplete.addBrackets": true,
    "python.linting.pylintArgs": [
            "--load-plugins",
            "pylint_django",
            "--errors-only"
        ],
    "python.autoComplete.extraPaths": [
        "D:/Program Files/python/Lib/site-packages",
        "D:/Program Files/python/Scripts",
      ],
    
    }
    

      

  • 相关阅读:
    Ibatis,Spring整合(注解方式注入)
    Amoeba搞定mysql主从读写分离
    ClickjackFilterDeny X-Frame-Options
    Clickjacking: X-Frame-Options header missing
    升级至Struts2 2.5.2
    js和java MD5加密
    Struts2 2.5.2
    Struts2 2.5.2的套路
    java8 集合流式操作
    JS 文本输入框放大镜效果
  • 原文地址:https://www.cnblogs.com/zhangshijiezsj/p/13944582.html
Copyright © 2020-2023  润新知