Does VS Code have the option to show vertical grid lines that correspond to TAB spaces? In Notepad , whenever I hit TAB, I get a vertical bar that can be seen in the screenshot below.
CodePudding user response:
You'll need to check/uncheck e.g. following settings in Visual Studio Code preferences:
editor.tabSize: 4
editor.insertSpaces: false
editor.guides.indentation: true
resulting in:
Steps to configure:
- Open your HTML file in VS Code
- Open VS Code Settings - type e.g. Ctrl ,
- Now in the
Search settings
text box enter e.g.editor.insertSpaces
- Uncheck Insert spaces when pressing Tab.
Repeat steps for the preferences mentioned above.