Closed asportnoy closed 4 months ago
The bracket pair colorization here matches the color of the text, making it hard to distinguish. This is in JS but could apply to other languages too, probably.
Unfortunately, I'm not aware of a way to make this not happen aside from using non-dracula colors.
The bracket pair colorization here matches the color of the text, making it hard to distinguish. This is in JS but could apply to other languages too, probably.
Code
```js const someObject = {}; class something { test() { const variable = 1; return () => { return { test: someObject[variable], }; }; } } ```