Dmitry Murzin
Dmitry Murzin
Fixed by https://github.com/dima74/intellij-indent-rainbow/commit/451df593a2503f66de7cd3802f82326d535ffa48 Please install latest version [2.1.0](https://plugins.jetbrains.com/plugin/13308-indent-rainbow/versions/stable/260176) (available in 2022.3 IDE version)
Also encountered this (I use zsh), but adding `export CLICOLOR=1` to `~/.zshrc` doesn't work for me warp:  konsole: 
Hi, thanks for the pull request! I manually cherry-picked your commit with opacity slider changes, it will be in the next release. Regarding new color palettes, I propose to add...
Hi @p0lygun! Please try `DjangoTemplate`
Oh, I see you want to disable the indent rainbow entirely for the Django files. Currently, we only have the option to enable rainbow in specific files, not the opposite....
@ChrisWhealy As a workaround while it is not fixed, please consider replacing in `src/unit_tests.rs`: ```rust include!(concat!(env!("OUT_DIR"), "/gwsample_basic.rs")); use gwsample_basic::*; ``` to ```rust use super::gwsample_basic::*; ```
So the plan is: * [x] Fix visitors - now we can process the same `PsiElement` multiple times * [ ] Make paste phase asynchronous * [ ] ? Investigate...
Reopened since there is also another bug that `column` macro is not expanded so `text` is marked as unused (thanks @mili-l for finding this)
@Kobzol could you please rebase on master
Example: ```rust fn func(option: Option) { let foo = (&1, ); option.unwrap_or((&foo.0, )); } ``` ```rust warning: this expression creates a reference which is immediately dereferenced by the compiler -->...