Visual Studio: is there a keyboard shortcut for navigating between the code editor window and finding results?

I can't seem to find the exact keyboard shortcut I'm looking for.

When I do "Search in Files" ( Ctrl+ Shift+ F), the keyboard navigation will automatically jump to the search results, and I can move the results using the arrow keys; the code editor window refreshes as I do this, and clicking Entertakes me from the Find Results window to the code editor window.

Now this is great for initial searches, but what if I want to bounce back and forth, say if I need to make changes to several different places in the search results?

Is there a keyboard shortcut to navigate from the code editor window to search results?

I am using MSVS 2013 if that matters.

+3


source to share


1 answer


If you have a General Development keyboard try: Alt+ F6.

It has to do with Window.NextPane

where you just came from, so it should bring you back.



Also, Alt+ F7is this Window.NextToolWindowNav

which gives out a navigation selection that makes it easy to navigate. This selection for navigation is the same for Ctrl+ Tab, which once opened can be moved up, down, left and right using the arrow keys.

+2


source







All Articles