From b19258b82d40b72ac4e60497214de14a4248d4d8 Mon Sep 17 00:00:00 2001 From: WebFreak001 Date: Mon, 11 Dec 2023 16:57:53 +0100 Subject: [PATCH] include all information in dump serve-d info command --- src/commands.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands.ts b/src/commands.ts index 2e8d426..1d11883 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -400,7 +400,9 @@ export function registerClientCommands(context: vscode.ExtensionContext, client: subscriptions.push(vscode.commands.registerCommand("code-d.dumpServedInfo", async () => { let info = await client.sendRequest("served/getInfo", { - includeConfig: true + includeConfig: true, + includeIndex: true, + includeTasks: true, }); client.outputChannel.appendLine("");