Skip to content

Commit

Permalink
Merge pull request #164863 from gjsjohnmurray/fix-164860
Browse files Browse the repository at this point in the history
Fix text of IW command palette entries (#164860)
  • Loading branch information
rebornix authored Oct 31, 2022
2 parents 8b4642a + 045d3bb commit caf921d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ registerAction2(class extends Action2 {
constructor() {
super({
id: 'interactive.input.focus',
title: { value: localize('interactive.input.focus', "Focus input editor in the interactive window"), original: 'Focus input editor in the interactive window' },
title: { value: localize('interactive.input.focus', "Focus Input Editor"), original: 'Focus Input Editor' },
category: interactiveWindowCategory,
f1: true
});
Expand Down Expand Up @@ -757,7 +757,7 @@ registerAction2(class extends Action2 {
constructor() {
super({
id: 'interactive.history.focus',
title: { value: localize('interactive.history.focus', "Focus history in the interactive window"), original: 'Focus input editor in the interactive window' },
title: { value: localize('interactive.history.focus', "Focus History"), original: 'Focus History' },
category: interactiveWindowCategory,
f1: true,
precondition: ContextKeyExpr.equals('resourceScheme', Schemas.vscodeInteractive),
Expand Down

0 comments on commit caf921d

Please sign in to comment.