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
This commit is contained in:
Lex Berezhny
2025-09-23 12:32:14 +00:00
committed by GitHub
parent 3ac14e15bb
commit 15e75bdf04
+5 -1
View File
@@ -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": []
}