Skip to content

Commit 5eb636f

Browse files
committed
Renames InlineSuggestionActions back to InlineCompletionsActions.
1 parent e8ad99d commit 5eb636f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/vs/editor/contrib/inlineCompletions/inlineCompletionsHoverParticipant.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class InlineCompletionsHoverParticipant implements IEditorHoverParticipan
7777

7878
renderHoverParts(hoverParts: InlineCompletionsHover[], fragment: DocumentFragment, statusBar: IEditorHoverStatusBar): IDisposable {
7979
const menu = this._menuService.createMenu(
80-
MenuId.InlineSuggestionActions,
80+
MenuId.InlineCompletionsActions,
8181
this._contextKeyService
8282
);
8383

src/vs/platform/actions/common/actions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export class MenuId {
171171
static readonly TerminalTabEmptyAreaContext = new MenuId('TerminalTabEmptyAreaContext');
172172
static readonly TerminalInlineTabContext = new MenuId('TerminalInlineTabContext');
173173
static readonly WebviewContext = new MenuId('WebviewContext');
174-
static readonly InlineSuggestionActions = new MenuId('InlineSuggestionActions');
174+
static readonly InlineCompletionsActions = new MenuId('InlineCompletionsActions');
175175

176176
readonly id: number;
177177
readonly _debugName: string;

src/vs/workbench/api/common/menusExtensionPoint.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ const apiMenus: IAPIMenu[] = [
234234
},
235235
{
236236
key: 'editor/inlineCompletions/actions',
237-
id: MenuId.InlineSuggestionActions,
237+
id: MenuId.InlineCompletionsActions,
238238
description: localize('inlineCompletions.actions', "The actions shown when hovering on an inline completion"),
239239
supportsSubmenus: false,
240240
proposed: true

0 commit comments

Comments
 (0)