Skip to content

Commit caf921d

Browse files
authored
Merge pull request microsoft#164863 from gjsjohnmurray/fix-164860
Fix text of IW command palette entries (microsoft#164860)
2 parents 8b4642a + 045d3bb commit caf921d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/interactive/browser/interactive.contribution.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ registerAction2(class extends Action2 {
722722
constructor() {
723723
super({
724724
id: 'interactive.input.focus',
725-
title: { value: localize('interactive.input.focus', "Focus input editor in the interactive window"), original: 'Focus input editor in the interactive window' },
725+
title: { value: localize('interactive.input.focus', "Focus Input Editor"), original: 'Focus Input Editor' },
726726
category: interactiveWindowCategory,
727727
f1: true
728728
});
@@ -757,7 +757,7 @@ registerAction2(class extends Action2 {
757757
constructor() {
758758
super({
759759
id: 'interactive.history.focus',
760-
title: { value: localize('interactive.history.focus', "Focus history in the interactive window"), original: 'Focus input editor in the interactive window' },
760+
title: { value: localize('interactive.history.focus', "Focus History"), original: 'Focus History' },
761761
category: interactiveWindowCategory,
762762
f1: true,
763763
precondition: ContextKeyExpr.equals('resourceScheme', Schemas.vscodeInteractive),

0 commit comments

Comments
 (0)