For all the C# devs transitioning to TypeScript in VS Code, this question is directed at you.
I was captivated by the code completion feature in VS C#. To paint a clearer picture, let's say I'm trying to write:
console.log('hello')
When coding in C#, here's what typically happens:
- Type "con"
- A list of suggestions pops up, usually starting with "console"
- Once highlighted and selected, pressing "." will write out "sole." so now it appears as:
console.
- Type "l", and "log" is suggested next
- Type "(", resulting in:
console.log('')
- Now the cursor is within the ''
- Type "hello"
With my current VS Code setup, I can achieve a similar result in JS/TS by pressing tab
each time I want to accept a suggestion. However, simply hitting the next punctuation mark to continue on felt really pleasant and, dare I say it, "fun." I miss that experience. And as far as I know, there are no technical limitations in the languages that would prevent this behavior.
Does anyone happen to know of an extension or setting that could enable this functionality? Alternatively, where else might this conversation be taking place?