jkaving / intellij-colors-solarized

Solarized Colorscheme for IntelliJ IDEA
3.26k stars 430 forks source link

Can you add a keyword color for "assert_that" word? #168

Closed zaz600 closed 5 years ago

zaz600 commented 6 years ago

Can you add a keyword color for "assert_that" word for Python scheme? assert_that is using in:

It would be nice if color of "assert_that" pseudo-keyword will be the same as "assert" keyword :)

IntelliJ example

2018-10-20 13 06 19
jkaving commented 5 years ago

Unfortunately I don't think that's possible. assert is a Python keyword and the color scheme in IntelliJ IDEA contains a setting for the color of keywords.

assert_that is just a function defined in a a library. To be able to colorize that differently we would need e.g. a way to set a color for text matching a certain RegEx. That's not something that IntelliJ IDEA currently supports in its color scheme system.