What is the hotkey to jump between split windows in Visual Studio 2008

被刻印的时光 ゝ 提交于 2019-12-06 18:14:54

问题


I've split the code window for a long css file into two sections, top half for viewing one area of code, bottom area for viewing another area of the code. I did this by dragging the splitter on the top right of the code editor to the middle of the editing area.

What is the keystroke command that makes the cursor jump from the lower window to the upper window and vice versa?

I believe the hotkey is the same as sql server.


回答1:


The F6 key moves between window splits in the default keymap.

You can find and customize all keyboard shortcuts in Visual Studio in the Keyboard Command options. If you go there and search for commands containing "split", you'll find the Window.NextSplitPane command, which is what you want. You can also map this command to another key. Keyboard shortcuts can also be context-sensitive, which means the F6 key can do different things in different situations.

Tools > Options > Environment > Keyboard




回答2:


Try Ctrl+Shift+UpArrow(DownArrow) to move the focus between the split windows - This works in the Microsoft SQL Server Management Studio. And it might also work on the Visual Studio.



来源:https://stackoverflow.com/questions/2203844/what-is-the-hotkey-to-jump-between-split-windows-in-visual-studio-2008

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!