Visual Commander extension lets you automate repetitive tasks in Visual Studio and change private IDE options.
You can record a text editing macro, reuse existing VB macros, create new commands and extensions in C# with full access to the Visual Studio automation model and .NET framework:
the team explorer window in vs shows a list of changed files – git version system
is there a way to process a selection of such files with vcmd? i would like to subject one or more selected files to a custom git command. thx
You can copy selected files to the clipboard with DTE.ExecuteCommand(“Edit.Copy”); and then read it as a string with System.Windows.Clipboard.GetText().