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",
      ],
    
    }
    

      

  • 相关阅读:
    使用parted对大于2T的磁盘进行分区
    iso系统镜像刻录到光盘和U盘
    戴尔R710服务器安装系统——配置raid
    UltraISO 9.7.1.3519注册码
    H3C交换机配置vlan
    kvm创建新虚拟机
    Windows添加永久静态路由
    gitlab部署步骤+汉化
    php配置php_pdo_mysql模块
    为git服务器配置gitosis管理权限
  • 原文地址:https://www.cnblogs.com/zhangshijiezsj/p/13944582.html
Copyright © 2011-2022 走看看