How to Navigate / Move Cursor by code block in VisualStudio
keyboard-shortcuts, visual-studio, visual-studio-2012
Solution
Bind them to `Edit.PreviousMethod` and `Edit.NextMethod` in the Options->Environment->Keyboard?
Problem
I want to be able to move the cursor (not move the line of code) in the text editor up a block or down a block by pressing `<ctrl>+<uparrow>` or `<ctrl>+<downarrow>`. In jEdit, Leafpad, etc, this just works out of the box. I do not want to move an entire page at a time, just simply go to the start or end of the text block that I happen to be on. Specifically, I want this, but for VS 2012 (which no longer has macros): keyboard shortcut to move from one code block to another in VS2008 I've seen these posts, and they are not what I'm after; I do not want to move code, I want to move the cursor to the top or bottom of the block I happen to be on. Visual Studio: hotkeys to move line up/down and move through recent changes Visual Studio - Scroll AND move cursor I have checked in ReSharper as well, and cannot seem to find an answer there. Does anyone know of an add-in that provides this functionality?