'Native bracket pair colorization extension doesn't work
I tried to use Native bracket pair colorization by putting "editor.bracketPairColorization.enabled": true in settings.jason file, but it doesn't work.
what did I do wrong? here's my settings.json file code.
{
"editor.wordWrap": "on",
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"explorer.confirmDelete": false,
"workbench.colorTheme": "Material Theme Darker",
"workbench.iconTheme": "material-icon-theme",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"git.enableSmartCommit": true,
"autoprefixer.formatOnSave": true,
"autoprefixer.options": {
"browsers": [
"last 4 versions" /* 가장 최신 버전에서 4단계 아래 버전까지 지원합니다. */,
"ie >= 9" /* IE9 버전 이상만 지원합니다. */,
"> 5%" /* 전 세계 브라우저 사용률 중 5% 를 초과하는 브라우저만 대응합니다. */
]
},
"editor.tabSize": 2,
"editor.guides.bracketPairs": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.bracketPairColorization.enabled": true
}
help!
Solution 1:[1]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Bhargav Chudasama |

