oderwat / vscode-indent-rainbow

Extension which shows indentation with a faint rainbow colored background to make them more readable
MIT License
406 stars 53 forks source link

Not sure how to make indent into blocks to lines #148

Closed Minus10Celcius closed 1 year ago

Minus10Celcius commented 1 year ago

I want to make the indent into lines to make it more cleaner but I don't know how

oderwat commented 1 year ago

I wonder if you read the documentation?

Minus10Celcius commented 1 year ago

I didn't really understand it, may you help me?

oderwat commented 1 year ago

This plugin has over 4 million installations, and I actually wonder what's the problem? It is all written in the README.

Maybe just add: "indentRainbow.ignoreErrorLanguages": ["*"] to your config.

This is my current config:

"indentRainbow.ignoreErrorLanguages" : [
    "*"
  ],
  "indentRainbow.ignoreLinePatterns": [
    "/[ \t]* [*]/g",
    "/[ \t]+[/]{2}/g"
  ],
  "indentRainbow.lightIndicatorStyleLineWidth": 1,
  "indentRainbow.indicatorStyle": "light",
  "indentRainbow.colors": [
    "rgba(255,255,64,0.3)",
    "rgba(127,255,127,0.3)",
    "rgba(255,127,255,0.3)",
    "rgba(79,236,236,0.3)"
  ],
  "indentRainbow.excludedLanguages" : [
    "plaintext"
  ],
Minus10Celcius commented 1 year ago

Screenshot 2023-02-26 3 07 48 PM I want it to be like this, am I blind?

Minus10Celcius commented 1 year ago

update: shit, i was blind @oderwat sorry for wasting your time