How to get rid of “Terminal will be reused by tasks, press any key to close it.” behaviour?

后端 未结 4 2108
渐次进展
渐次进展 2020-12-31 00:11

Upon executing a task (cargo build in this case), the following appears in the VSCode terminal:

> Executing task: cargo build <

(output of the task he         


        
4条回答
  •  隐瞒了意图╮
    2020-12-31 01:01

    There is a new presentation option called showReuseMessage. Add the following to your task definition.

    "presentation": {
         "showReuseMessage": false
    }
    

提交回复
热议问题