From 15e75bdf04bfb2c4c22e2e42a354df38ec564b06 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 23 Sep 2025 08:32:14 -0400 Subject: [PATCH] Add show_summary & show_command to the initial_tasks.json (#38660) Release Notes: - Added "show_summary" & "show_command" settings to the initial tasks.json file. This makes the initial task template match the docs here: https://zed.dev/docs/tasks --- assets/settings/initial_tasks.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/settings/initial_tasks.json b/assets/settings/initial_tasks.json index 5cead67b6d5bb89e878e3bfb8d250dcbbd2ce447..a79e98063237ca297a89b0d151bd48149061b7bb 100644 --- a/assets/settings/initial_tasks.json +++ b/assets/settings/initial_tasks.json @@ -43,7 +43,11 @@ // "args": ["--login"] // } // } - "shell": "system" + "shell": "system", + // Whether to show the task line in the output of the spawned task, defaults to `true`. + "show_summary": true, + // Whether to show the command line in the output of the spawned task, defaults to `true`. + "show_command": true // Represents the tags for inline runnable indicators, or spawning multiple tasks at once. // "tags": [] }