Skip to content

Commit

Permalink
fix surround with naming for the command palette (#205121)
Browse files Browse the repository at this point in the history
  • Loading branch information
justschen committed Feb 13, 2024
1 parent e8ab562 commit 903b1e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export class SurroundWithSnippetEditorAction extends SnippetEditorAction {
static readonly options = {
id: 'editor.action.surroundWithSnippet',
title: {
value: localize('label', 'More...'),
original: 'More...'
value: localize('label', 'Surround With Snippet...'),
original: 'Surround With Snippet...'
}
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class SurroundWithSnippetCodeActionProvider implements CodeActionProvider {

private static readonly _overflowCommandCodeAction: CodeAction = {
kind: CodeActionKind.SurroundWith.value,
title: SurroundWithSnippetEditorAction.options.title.value,
title: localize('more', "More..."),
command: {
id: SurroundWithSnippetEditorAction.options.id,
title: SurroundWithSnippetEditorAction.options.title.value,
Expand Down

3 comments on commit 903b1e9

@WilmarE
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@WilmarE
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@WilmarE
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.