Renames InlineSuggestionActions back to InlineCompletionsActions.

This commit is contained in:
Henning Dieterichs 2021-06-04 13:55:02 +02:00
parent e8ad99de2b
commit 5eb636f22f
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06
3 changed files with 3 additions and 3 deletions

View file

@ -77,7 +77,7 @@ export class InlineCompletionsHoverParticipant implements IEditorHoverParticipan
renderHoverParts(hoverParts: InlineCompletionsHover[], fragment: DocumentFragment, statusBar: IEditorHoverStatusBar): IDisposable {
const menu = this._menuService.createMenu(
MenuId.InlineSuggestionActions,
MenuId.InlineCompletionsActions,
this._contextKeyService
);

View file

@ -171,7 +171,7 @@ export class MenuId {
static readonly TerminalTabEmptyAreaContext = new MenuId('TerminalTabEmptyAreaContext');
static readonly TerminalInlineTabContext = new MenuId('TerminalInlineTabContext');
static readonly WebviewContext = new MenuId('WebviewContext');
static readonly InlineSuggestionActions = new MenuId('InlineSuggestionActions');
static readonly InlineCompletionsActions = new MenuId('InlineCompletionsActions');
readonly id: number;
readonly _debugName: string;

View file

@ -234,7 +234,7 @@ const apiMenus: IAPIMenu[] = [
},
{
key: 'editor/inlineCompletions/actions',
id: MenuId.InlineSuggestionActions,
id: MenuId.InlineCompletionsActions,
description: localize('inlineCompletions.actions', "The actions shown when hovering on an inline completion"),
supportsSubmenus: false,
proposed: true