Skip to content

Commit 47262be

Browse files
committed
Disable terminal initial hint when ctrl+i is triggered
Previously this would only happen when _clicked_. Fixes microsoft#213820
1 parent a11a0d7 commit 47262be

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/vs/workbench/contrib/terminalContrib/chat/browser/terminal.initialHint.contribution.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,7 @@ class TerminalInitialHintWidget extends Disposable {
261261
};
262262
this.toDispose.add(this.commandService.onDidExecuteCommand(e => {
263263
if (e.commandId === TerminalChatCommandId.Start) {
264+
this._storageService.store(Constants.InitialHintHideStorageKey, true, StorageScope.APPLICATION, StorageTarget.USER);
264265
this.dispose();
265266
}
266267
}));

0 commit comments

Comments
 (0)