I have VSC for Windows 10. There is an option to specify spaces OR tabs for text indentation, but I need both: spaces for CSS files (including four spaces inside media queries) and tabs for html and PHP files. Is this possible? Thanks.
You could try this in your settings.json file:
{ "[css]": { "editor.insertSpaces": true }, "[html]": { "editor.insertSpaces": false }, "[php]": { "editor.insertSpaces": false } }
etc.
1.4m articles
1.4m replys
5 comments
57.0k users