oderwat / vscode-indent-rainbow

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

support for replacing whitespaces in the beginning of the line #99

Closed tejakunchavenkata closed 3 years ago

tejakunchavenkata commented 3 years ago

whitespaces present in the beginning of the lines to be replaced with dot .

image

"indentRainbow.includedLanguages": [], "indentRainbow.ignoreLinePatterns" : [ "/[ \t]* [*]/g", // lines begining with <whitespace><space>* "/[ \t]+[/]{2}/g" // lines begininning with <whitespace>// ], "indentRainbow.updateDelay": 50 , "indentRainbow.colors": [ "rgba(255,255,64,0.07)", "rgba(127,255,127,0.07)", "rgba(255,127,255,0.07)", "rgba(79,236,236,0.07)" ]

oderwat commented 3 years ago

Nothing I want to support. Just "editor.renderWhitespace": "boundary" or request something else from the VSCode devs.

tejakunchavenkata commented 3 years ago

Thanks Hans . It worked .