Hotkeys for Previous and Next call stack frames in Visual Studio

前端 未结 5 948
温柔的废话
温柔的废话 2021-02-01 20:09

Visual Studio gives many navigation hotkeys: F8 for next item in current panel (search results, errors ...), Control+K, N for bookmar

5条回答
  •  萌比男神i
    2021-02-01 20:34

    I don't think theres an explict next-frame / prev-frame key binding but heres what I do.

    CTRL-ALT-C is already bound to "Debug.CallStack" This will focus you in the Call Stack Tool Window

    Once focused in the Callstack window... Up & Down arrows will move you through the call stack frames

    I've then bound

    CTRL-C, CTRL-S to "DebuggerContextMenus.CallStackWindow.SwitchToFrame" and CTRL-C, CTRL-C to "DebuggerContextMenus.CallStackWindow.SwitchToCode"

    both of which will take you back into the code window at the particular frame.

    Hope that helps.

提交回复
热议问题