Added auto detection of typescript extension

This commit is contained in:
bashirs 2013-02-14 14:35:22 -08:00
Родитель 00af86e364
Коммит 64736beb80
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -65,6 +65,8 @@ namespace ColorCode
return LanguageId.Xml;
case "ps1":
return LanguageId.PowerShell;
case "ts":
return LanguageId.TypeScript;
default:
throw new ArgumentException(string.Format("Unexpected file extension: {0}.", fileExtension));
}