zoukankan      html  css  js  c++  java
  • 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",
      ],
    
    }
    

      

  • 相关阅读:
    Redhat MysqlReport安装配置详解
    asp.net中服务器端控件和客户端控件的交互问题
    关于弹出对话框返回值的分析
    关于父子窗口的参数传递(引用的高手的)
    呵呵!刚刚申请!
    Loadrunner教程
    性能测试常见用语
    如何删除电脑垃圾文件
    内连接和外连接
    酒桌上的规矩
  • 原文地址:https://www.cnblogs.com/zhangshijiezsj/p/13944582.html
Copyright © 2011-2022 走看看