Remove configure inline chat command from menu because it isn't popular at all and takes space (#213396)

also fixes https://github.com/microsoft/vscode-copilot/issues/5662
This commit is contained in:
Johannes Rieken 2024-05-24 16:50:41 +02:00 committed by GitHub
parent edf68345d1
commit b6c1b52bac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -383,14 +383,10 @@ export class ConfigureInlineChatAction extends AbstractInlineChatAction {
constructor() {
super({
id: 'inlineChat.configure',
title: localize('configure', 'Configure '),
title: localize2('configure', 'Configure Inline Chat'),
icon: Codicon.settingsGear,
precondition: CTX_INLINE_CHAT_VISIBLE,
menu: {
id: MENU_INLINE_CHAT_WIDGET,
group: 'config',
order: 1,
}
f1: true,
});
}