gpt4 book ai didi

visual-studio - 有什么方法可以在您关闭文档时自动折叠到定义?

转载 作者:行者123 更新时间:2023-12-04 06:11:35 26 4
gpt4 key购买 nike

我知道这对大多数人来说可能听起来不是很有用,但我真的很喜欢在 VS 中折叠我的所有代码,而且每次我关闭文档时都必须 ctrl+m ctrl+o 有点烦人。

是否有一些插件可以做到这一点,或者有人可以给我创建插件的一般提示吗?谢谢

最佳答案

您可以通过在 Visual Studio 中创建执行 CollapsetoDefinitions 的宏来实现所需的功能。任何时候的命令 DocumentClosing引发事件。

只需去:工具 -> 宏 -> 宏 IDE。

然后将以下代码添加到 EnvironmentEvents模块。

Private Sub DocumentEvents_DocumentClosing(ByVal Document As EnvDTE.Document) Handles DocumentEvents.DocumentClosing
Dim thread As New System.Threading.Thread(AddressOf CollapsToDefinition)
thread.Start()
End Sub

Public Sub CollapsToDefinition()
Try
If DTE.ActiveDocument Is Nothing Then Exit Sub
DTE.ExecuteCommand("Edit.CollapsetoDefinitions")
Catch
'Ignore any error
End Try
End Sub

关于visual-studio - 有什么方法可以在您关闭文档时自动折叠到定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4245492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com