Add support of customization of colorization level
See original GitHub issueColorization level may looks like this:
- https://github.com/izhangzhihao/intellij-rainbow-brackets/pull/35
do not colorize brackets without content
- do not colorize
method()
- colorize
method(param)
- https://github.com/izhangzhihao/intellij-rainbow-brackets/issues/233
do not colorize brackets without another brackets inside
- do not colorize
method(param)
- colorize external brackets of
method(array[3])
-
do not colorize brackets without another brackets of the same type inside
- do not colorize
method(array[3])
- colorize external brackets of
method(new Entity())
And separately
-
always colorize multi-line brackets
(regardless of colorization level)
- do not colorize
['firstName', 'secondName', 'city, 'address']
- always colorize
[
'firstName', 'secondName',
'city', 'address'
]
-
- sub-option
not apply to {...}
- ex. ifalways colorize multi-line brackets
is on but colorization level is not forcing to colorize
- sub-option
function f () {
return 1
}
than {...}
should not be colorized
Issue Analytics
- State:
- Created 6 years ago
- Reactions:4
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Use the Photoshop Levels adjustment - Adobe Support
In Adobe Photoshop, learn how to use the Levels adjustment to correct the tonal range and color balance of an image.
Read more >Create Custom Color Palettes - Tableau Help
In the Edit Colors dialog box, from the palette drop-down list, select your custom palette. If you want each color gradation to be...
Read more >Bracket pair colorization 10000x faster - Visual Studio Code
Bracket pair colorization is all about quickly determining all brackets and their (absolute) nesting level in the viewport. The viewport can be ...
Read more >Add color corrections in Final Cut Pro - Apple Support
To add an additional color correction, do one of the following: Choose Window > Go To > Color Inspector (or press Command-6), then...
Read more >ADI: Customizing Your Site's Colors | Help Center | Wix.com
Click the Design icon in the Main Color box at the top. Choose one of the suggested colors, or click the Add icon...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
do not colorize brackets without content: see #35
@mfn this is the case I was targeting when proposed sub-option
not apply to {...}
. I thing it should fit the case without need of such deep context knowledge