问题
I have a macro/addin where I need to disable the Vb.Net pretty listing temporary.

Tried to record a macro but it only shows that I opened the options dialog.
Also tried
Dim props As EnvDTE.Properties = DTE.Properties("TextEditor", "Basic")
but the props collection does not contain any of the options under VB Specific.
(The options from General and Tabs are int the collection)
回答1:
Found a listing of options here
In my case it is
Dim prettyListingProperty = DTE.Properties("TextEditor", "Basic-Specific").Item("PrettyListing")
来源:https://stackoverflow.com/questions/13152999/turn-off-pretty-listing-in-visual-studio