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

      

  • 相关阅读:
    第五章.函数
    第四章.文件操作
    第三章.数据类型
    PyYaml简单学习
    Vim编辑器基本用法
    numpy.ndarray.transpose用法理解
    Django Formsets总结
    学习,认知,思维
    Django model总结(上)
    结合pandas,sqlite3批量将csv数据导入sqlite数据库
  • 原文地址:https://www.cnblogs.com/zhangshijiezsj/p/13944582.html
Copyright © 2011-2022 走看看