Is there a keyboard shortcut for the method dropdown list in Visual Studio 2010's VB.NET code editor?

前端 未结 3 1218
不思量自难忘°
不思量自难忘° 2021-02-20 00:56

In Visual Studio, there is a method dropdown list in VB code editor windows. This is highlighted in the screenshot below.

I would like to find out whether there is a def

3条回答
  •  执念已碎
    2021-02-20 01:23

    Using AutoHotKey I was able to create a easier shortcut key: Windows + Shift + O

    #+o::
      Send ^{F2}{Tab}{Tab}{Down}
    Return
    

    It immediately opens the dropdown too

提交回复
热议问题