In C#, it\'s common to have to type {0}, {1}, etc. when formatting strings with string.Format() or Console.WriteLine(). Considering its frequency, it\'
{0}
{1}
You can create the following command (C#) with my Visual Commander extension to insert text and then assign a keyboard shortcut to it:
EnvDTE.TextSelection ts = DTE.ActiveDocument.Selection as EnvDTE.TextSelection; ts.Text = "{0}";