How to show code outline in Visual Studio?

前端 未结 19 915
情歌与酒
情歌与酒 2020-12-13 12:26

This kind of stuff exists in Eclipse:

\"alt

But I\'ve not found it in Visual Studio yet. Is ther

19条回答
  •  情书的邮戳
    2020-12-13 12:47

    Trick is to call Ctrl+F2, then Tab, then Tab, then Down arrow. I've done it with this simple AutoHotkey script when I hit Ctrl+o:

    #IfWinActive ahk_exe devenv.exe
    ^o::
      Send ^{F2}
      Send {Tab}
      Send {Tab}
      Send {Down}
      return
    #IfWinActive
    

    It will show dropdown that is closest to Quick Outline in Eclipse or others.

提交回复
热议问题