microsoft / VS-Macros

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.
Other
131 stars 41 forks source link

insert new line after last property of class #56

Open Bouki6 opened 6 years ago

Bouki6 commented 6 years ago

Hi! First, thanks for this extension. is there any way to insert new line after last property of class?

public int Foo1 { set; get; }
public int Foo2 { set; get; }
public int Foo 3{ set; get; }
public int Foo4 { set; get; }
//here i want to insert new line
public void Bar()
{
}