-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
✨ Bracket pair colorization #39
Comments
I like how Xcode handles this with temporary highlights instead of persistent colors that add visual complexity to your editor. It may be considered distracting. We can provide an option, and if not we allow for development of extensions. My vote is to follow suit with Xcode and go with the temporary bracket pair highlights. Screen.Recording.2022-03-25.at.10.16.49.AM.movThis would require some functionality around editor highlighting because this kind of highlighting is used in document find/replace - CodeEditApp/CodeEditTextView#31. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
When dealing with deeply nested brackets in your code, it can be hard to figure out which brackets match and which do not. Bracket pair colorization fixes this by making pairs the same color to easily distinguish them.
Resources
https://code.visualstudio.com/blogs/2021/09/29/bracket-pair-colorization
The text was updated successfully, but these errors were encountered: