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

}

  

posted @ 2020-11-08 15:49  睁yan-ii  阅读(241)  评论(0编辑  收藏  举报