configure sidebar to be able to scroll horizontally visual studio code

v1.22 released in April, 2018 has just added the ability to add horizontal scrolling to various tree elements, like the explorer pane. Horizontal scrolling support. // Controls whether trees support horizontal scrolling in the workbench. “workbench.tree.horizontalScrolling”: true, (deprecated, don’t use) False is the default so you will need to change the setting. A restart is … Read more

The attribute name of [ *ngIf ] must be in lowercase

I think it has to do with the vscode-htmlhint plugin, try disable it. If that removed the warning you can disable just that rule by setting attr-lowercase to false. Read more about the configuration of this plugin here In VSCode you can set the following settings to disable it.: “htmlhint.options”: { “attr-lowercase”: false } If … Read more

How to disable HTML autocompletion in VSCode?

“emmet.excludeLanguages”: [“typescriptreact”] // or whatever languages you want to exclude like “emmet.excludeLanguages”: [“javascript”] Which will stop emmet from working at all in those languages you specify. Or you can also try: “[typescriptreact]”: { “editor.acceptSuggestionOnEnter”: “off” }, or “[javascript]”: { “editor.acceptSuggestionOnEnter”: “off” }, together with “emmet.showExpandedAbbreviation”: “never”, to keep emmet features in your language but disable … Read more