Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I escape from a Snippet? (Vb.Net)

In C# when I am done entering the fields of a snippet, I can hit Enter to get to the next line. What is the equivalent Key in VB?

Edit: I prefer not to use the mouse.

like image 516
Nescio Avatar asked Sep 23 '08 19:09

Nescio


1 Answers

Wow... I sure hope they improve this soon.

Meanwhile, in case anyone cares, I created an additional replacement field ($Enter$) at the end of my custom snippet. This allows me to [tab] through the fields and then type [DownArrow] [Enter] when I reach the end of the list.

Something like....

private _$PropertyName$ As $PropertyType$
Public WriteOnly Property $PropertyName$() As $PropertyType$
     Set(ByVal value as $PropertyType$)
          _$PropertyName$ = value
     End Set
End Property $Enter$
like image 80
Nescio Avatar answered Sep 30 '22 15:09

Nescio