Vscode Not Auto Completing HTML

VSCode not auto completing HTML

From the 0.3.0 release notes

HTML auto closing of tags has now been removed and replaced with smarter IntelliSense on </.

Prevent VS Code from auto completing HTML

The solution is to add the following setting:
"html.mirrorCursorOnMatchingTag": false

The setting documentation

Not getting auto-complete for JavaScript in new VsCode version

After surfing a lot in settings of VsCode, I finally figured out two things that might be causing this problem. Solved both of them and now the auto-complete is working fine for my nodeJs files in VsCode.

  1. Install ESLint and JavaScript (ES6) code snippets extensions for providing intellisense for js code.

Sample Image


  1. Enable auto-complete if you disabled it by mistake. This should fix the problem.
    settings > search javascript/typescript > search auto-complete in the extension settings and turn it on.

Sample Image

Tab completion is not working in visual code studio

You are probably looking for the Auto Complete Tag and Auto Close Tag extensions:

  • Auto Close Tag for VS Code
  • Auto Complete Tag for VS Code

You can find additional Extensions like this by searching for the AutoComplete tag:

Search VS Code marketplace for AutoComplete



Related Topics



Leave a reply



Submit