vscode - python任务运行器

时间:2015-07-06 07:39:24

标签: python visual-studio-code

使用vscode我想要自己的python任务运行器。

我在task.json中创建了自己的任务运行器。但是它没有完成并继续运行。

代码版本0.4

我唯一的目标是运行一个python应用程序并在新的拆分窗口中显示服务器连接。

python app.py

这就是我创造它的方式,但它的错误可能会让我朝着正确的方向发展

// A task runner for python
// Runs a python program
{
    "version": "0.1.0",

    "command": "python",

    // The command is a shell script
    "isShellCommand": true,

    // Show the output window only if unrecognized errors occur. 
    // "showOutput": "silent",

    // args is the HelloWorld program to compile.
    //"args": ["HelloWorld.ts"],

    // use the standard tsc problem matcher to find compile problems
    // in the output.
    //"problemMatcher": "$tsc"
}

1 个答案:

答案 0 :(得分:0)

任务运行器当前正在等待该过程完成。只要进程正在运行,我们就会在状态栏中旋转进度条。我们支持“长期”运行任务并在待办事项上执行多个任务。