当前位置:   article > 正文

vscode tasks.json和launch.json的配置详解_tasks.json详解

tasks.json详解

官方文档

以官网为准

https://code.visualstudio.com/docs/editor/tasks#vscode
  • 1

task.json

inputs

promptString

例:提交代码的例子

提交代码的脚本push.sh通过读取args获得commit信息,args为inputs的promptString,即在quick input框中输入的字符串。

效果:
选择task:

在这里插入图片描述

输入commit信息:

在这里输入commit信息,直接Enter就会把inputs中default字段的信息填在这里,直接输入即可覆盖。
在这里插入图片描述

结果:

在这里插入图片描述

代码tasks.json:
{
    "version": "2.0.0",
    "inputs": [
        {
          "type": "promptString",
          "id": "commitInfo",
          "description": "输入commit信息",
          "default": "default information"
        }
    ],
    "tasks": [
        {
            "label": "提交代码",
            "type": "shell",
            "command": "./push.sh",
            "args": [
                "${input:commitInfo}"//inputs中的id
            ],
            "group": "test",
            "presentation": {
            },
            "problemMatcher": []
        }
    ]
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

其中push.sh为

#!/bin/bash
git add .
git commit -am $1
git push
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/800493
推荐阅读
相关标签
  

闽ICP备14008679号