VS 2010键盘快捷键列表

发布于 2024-11-10 01:53:14 字数 66 浏览 8 评论 0原文

有没有办法获取当前在 VisualStudio 中设置的所有键盘快捷键的列表?这比浏览选项窗口中的所有命令要容易得多。

Is there a way to get a list of all of the keyboard shortcuts that are currently set in VisualStudio? This would be a lot easier than surfing through all of the commands in the options window.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

等数载,海棠开 2024-11-17 01:53:14

下面是一个网站的示例,其中列出了大量快捷键。我确信还有其他人。

http://www.dofactory.com/ShortCutKeys/ShortCutKeys.aspx

如果您愿意检查当前的绑定,有关于如何执行此操作的文章:

http://msdn.microsoft.com/en-us/ library/ms247076(v=VS.100).aspx

注意:这花了我大约 12 秒来谷歌...

Here's an example of one site that lists a good number of the short cut keys. I'm sure there are others.

http://www.dofactory.com/ShortCutKeys/ShortCutKeys.aspx

If you want to check the current bindings, there are articles about explaining how to do that:

http://msdn.microsoft.com/en-us/library/ms247076(v=VS.100).aspx

Note: This took me about 12 seconds to google...

我正在使用 PowerConsole - 将 Powershell 控制台集成到的扩展视觉工作室。要获取所有快捷键的列表,您可以在 PowerConsole 中键入以下命令:

PS> $dte.Commands | ? { $_.Bindings } | % { Write-host $_.LocalizedName ';' $_.Bindings } 

结果是命令名称和相应键盘快捷键(分号分隔)的列表,例如,您可以将其导出到 Excel,如果您想打印出去

I'm using PowerConsole - extension that integrates Powershell console to Visual Studio. To get a list of all shortcuts, you would type following command in PowerConsole:

PS> $dte.Commands | ? { $_.Bindings } | % { Write-host $_.LocalizedName ';' $_.Bindings } 

The result is a list of command names and corresponding keyboard shortcuts (semicolon separated), that you could, for example, export to Excel, and if you want to print out

南街女流氓 2024-11-17 01:53:14

以下是 Microsoft 2010 年所有默认绑定的“官方”列表。有 C++、VB.NET、C# 和 F#

http://www.microsoft.com/downloads/en/details.aspx?FamilyID=92ced922-d505-457a-8c9c-84036160639f

Here is the "official" list from Microsoft of all the default bindings in 2010. Has C++, VB.NET, C# and F#

http://www.microsoft.com/downloads/en/details.aspx?FamilyID=92ced922-d505-457a-8c9c-84036160639f

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文