I added some comments there as well. Particularly the claim that VSCode supports 34 languages out of the box. Turns out, and I quote myself:
"
Saying “Visual Studio Code includes 34 languages out of the box” is
highly inaccurate and misleading. Take for example Go: I gave it a quick
try, and the built-in support for Go in VS Code is just syntax
highlighting, plus dumb textual code completion (basically scans for
words in document and presents those as suggestions – there is no
syntactic or semantic analysis involved or any heuristics). Same thing happens with C/C++ files. I haven’t tried with the other
34 (!) languages you mentioned, but I imagine it will be the same for
many of them.
I don’t think any serious programmer would consider that built-in
functionality to be proper language support. In fact when you open a Go
file, VS Code shows a pop-up recommending you to install the Go
extension (which will have proper language support: https://marketplace.visualstudio.com/items?itemName=lukehoban.Go ). Same for C/C++ and others.
"