diff --git a/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts b/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts index f2bd25f1585703712d5ecbe9ec80b0f30bbea120..7f563dc6e31e30d3f3f95bdf7ac7667de0f8b375 100644 --- a/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts +++ b/src/vs/editor/contrib/wordHighlighter/common/wordHighlighter.ts @@ -499,7 +499,7 @@ class NextWordHighlightAction extends WordHighlightNavigationAction { alias: 'Go to Next Symbol Highlight', precondition: ctxHasWordHighlights, kbOpts: { - kbExpr: EditorContextKeys.focus, + kbExpr: EditorContextKeys.textFocus, primary: KeyCode.F7 } }); @@ -515,7 +515,7 @@ class PrevWordHighlightAction extends WordHighlightNavigationAction { alias: 'Go to Previous Symbol Highlight', precondition: ctxHasWordHighlights, kbOpts: { - kbExpr: EditorContextKeys.focus, + kbExpr: EditorContextKeys.textFocus, primary: KeyMod.Shift | KeyCode.F7 } });