An extension for Visual Studio 2013+ that enables the use of macros in the IDE. The extension can record most of the features in Visual Studio including text editing operations.
It can't figure it out how to get it to work. Sometimes it jump to the correct line, sometimes it doesn't do anything, most of the time it puts in only half the text.
I have this macro:
dte.ExecuteCommand("Edit.Find"); dte.Find.FindWhat = 'constructor('; dte.Find.FindWhat = ')'; dte.ActiveDocument.Selection.CharLeft(); Macro.InsertText(","); dte.ActiveDocument.Selection.NewLine(); Macro.InsertText("configurator: IConfigurator)");
It can't figure it out how to get it to work. Sometimes it jump to the correct line, sometimes it doesn't do anything, most of the time it puts in only half the text.
I don't have any plugins installed.