Exceptional color code indented in sublime text

I use syntactic whitespace languages ​​heavily (LiveScript, Emblem, Stylus, YAML)

Is there a way to customize the padding backgrounds?

I read that I can color those tiny indentation lines, but that is not enough.

Here's a mock up of what I'm thinking about:

enter image description here

+3


source to share


1 answer


I am looking for this too, and I thought it would be just changing the background color of the indentation based on how many lines there would be great. I'm not sure how to do this, but I found a similar solution here:

https://github.com/buymeasoda/soda-theme/issues/153

This will give you lines that look like this: image of colored indentation

Specifically, this page says:

Just add these settings to Monokai Soda.tmTheme file in settings dictionary, displayed in screenshot

<key>guide</key>
<string>#92003b</string>
<key>activeGuide</key>
<string>#7fb11b</string>
<key>stackGuide</key>
<string>#635f2d</string>

      



Another user on the above page says the following:

Just wanted to point out to others, that you'll need to enable "draw_active", in user prefs, like so:

"indent_guide_options":
[
    "draw_normal",
    "draw_active"
],

      

They also link to this page in the link above: http://wesbos.com/sublime-text-indentation-guide-lines/

These options look like they will help, but they are not the exact answer to your question. I would definitely like to see something like what you mention.

+4


source







All Articles