Skip to content

Commit 903b1e9

Browse files
authored
fix surround with naming for the command palette (microsoft#205121)
1 parent e8ab562 commit 903b1e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vs/workbench/contrib/snippets/browser/commands/surroundWithSnippet.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export class SurroundWithSnippetEditorAction extends SnippetEditorAction {
3232
static readonly options = {
3333
id: 'editor.action.surroundWithSnippet',
3434
title: {
35-
value: localize('label', 'More...'),
36-
original: 'More...'
35+
value: localize('label', 'Surround With Snippet...'),
36+
original: 'Surround With Snippet...'
3737
}
3838
};
3939

src/vs/workbench/contrib/snippets/browser/snippetCodeActionProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SurroundWithSnippetCodeActionProvider implements CodeActionProvider {
2525

2626
private static readonly _overflowCommandCodeAction: CodeAction = {
2727
kind: CodeActionKind.SurroundWith.value,
28-
title: SurroundWithSnippetEditorAction.options.title.value,
28+
title: localize('more', "More..."),
2929
command: {
3030
id: SurroundWithSnippetEditorAction.options.id,
3131
title: SurroundWithSnippetEditorAction.options.title.value,

0 commit comments

Comments
 (0)