Skip to content

Commit 26fa86f

Browse files
authored
Add experiment flag to todo list setting (microsoft#259890)
1 parent ab8380f commit 26fa86f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/vs/workbench/contrib/chat/browser/chat.contribution.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,9 @@ configurationRegistry.registerConfiguration({
549549
default: false,
550550
description: nls.localize('chat.todoListTool.enabled', "Enables todo lists in chat. This tool allows you to use todo lists in chat."),
551551
tags: ['experimental'],
552-
included: false,
552+
experiment: {
553+
mode: 'startup'
554+
}
553555
},
554556
'chat.tools.useTreePicker': {
555557
type: 'boolean',

src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { ContextKeyExpr } from '../../../../../platform/contextkey/common/contex
2323

2424
export const TodoListToolSettingId = 'chat.todoListTool.enabled';
2525

26-
export const ManageTodoListToolToolId = 'vscode_manageTodoList';
26+
export const ManageTodoListToolToolId = 'manage_todo_list';
2727

2828
export const ManageTodoListToolData: IToolData = {
2929
id: ManageTodoListToolToolId,

0 commit comments

Comments
 (0)