Jay Asbury
Jay Asbury
We would have to do what visual studio does. Show a wrap arrow at the end of the line that wrapped. On Mon, Dec 7, 2015, 4:45 AM Michael Naumov...
@SeanFeldman create a new menu in this section that says Insert Co-authored-by. It will create text like ``` Co-authored-by: NAME ```  Use our code to get the name and...
Also. Create an insertable template provider so adding other like things can be easily created and other UI components like the commit message editor can all use the same functionality....
Very rough idea and pseudo code ``` class CommitMessagePartialProvider{ virtual ToString() {return ""} } class CoAuthoredMessageProvider : CommitMessagePartialProvider{ override ToString() {return $"{getName()} }" } .... ``` Create a factory class...
The reuse I was talking about was the fact that we have  and  So putting the code to generate the message in the FormCommit is foolish. Why I...
Just throwing idea your way. Add a dialog that lets users give author name and email address as a kind of collection editor. Add option to launch dialog on commit...
I for one think it shouldn't be in options drop-down. I would first look at the commit message button. Also launching a dialog that lets user enter name and email...
Exactly [Automation] Or Automation ?
Provide a sample commit message you would expect to match.
Start with https://regexr.com/5601t and play with it to see what regex would work.