user826840
user826840

Reputation: 1273

Typescript auto-completion in Visual Studio 2015

Using VS2015, in C# or other languages when you type part of an identifier, then punctuation, it auto-completes. eg type 'conso' then '.' and it will complete it to 'Console.'. I like this!

But in Typescript, I have to press enter or tab to get the completion. So 'docum' then enter then '.', to get 'document.'

Is there a config option to make the Typescript completion work like C#? The difference is annoying.

Thanks

Upvotes: 1

Views: 94

Answers (1)

Dylan Meeus
Dylan Meeus

Reputation: 5812

It seems like at the moment this is not supported, but it is a known issue.

this will be fixed in 2.0. autocompletion on most characters...

Following the trail leads me here.

Where I found

I have a fix for this, and it should be part of the final 2.0 release.

Upvotes: 1

Related Questions