From a67c466ac5f2c2cd6df5fd3284b517c55704eea8 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 19:36:04 +0000 Subject: [PATCH] Remove context window usage tip (#296070) --- .../workbench/contrib/chat/browser/chatTipService.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/vs/workbench/contrib/chat/browser/chatTipService.ts b/src/vs/workbench/contrib/chat/browser/chatTipService.ts index 3a5d17812a8..e5c133f8176 100644 --- a/src/vs/workbench/contrib/chat/browser/chatTipService.ts +++ b/src/vs/workbench/contrib/chat/browser/chatTipService.ts @@ -240,17 +240,6 @@ const TIP_CATALOG: ITipDefinition[] = [ when: ChatContextKeys.chatModeKind.isEqualTo(ChatModeKind.Agent), excludeWhenToolsInvoked: ['runSubagent'], }, - { - id: 'tip.contextUsage', - message: localize('tip.contextUsage', "Tip: [View your context window usage](command:workbench.action.chat.showContextUsage) to see how many tokens are used and what's consuming them."), - when: ContextKeyExpr.and( - ChatContextKeys.chatModeKind.isEqualTo(ChatModeKind.Agent), - ChatContextKeys.contextUsageHasBeenOpened.negate(), - ChatContextKeys.chatSessionIsEmpty.negate(), - ), - enabledCommands: ['workbench.action.chat.showContextUsage'], - excludeWhenCommandsExecuted: ['workbench.action.chat.showContextUsage'], - }, { id: 'tip.sendToNewChat', message: localize('tip.sendToNewChat', "Tip: Use [Send to New Chat](command:workbench.action.chat.sendToNewChat) to start a new conversation with a clean context window."),