buymeasoda / soda-theme

Dark and light custom UI themes for Sublime Text
https://buymeasoda.github.io/soda-theme/
4.33k stars 518 forks source link

1px vertical split line is distracting #87

Closed jordwalke closed 12 years ago

jordwalke commented 12 years ago

I opened up an older version of the theme (which coincidentally was in an older build of Sublime) and I noticed that there was no 1px vertical gray line to divide vertical groups. In never versions, there is such a 1px vertical line and I find it distracting. Is there a way to disable this?

buymeasoda commented 12 years ago

Hi @jordow,

A good way to do it, is to apply a User Theme file to Soda Theme that removes the divider.

Have a read over the wiki page on theme customisation that talks through how to create and use the User Theme feature of Sublime Text 2.

https://github.com/buymeasoda/soda-theme/wiki/Theme-customisation

For your change, the contents of the user file would be:

[
    {
        "class": "grid_layout_control",
        "border_size": 0
    }
]
jordwalke commented 12 years ago

Thanks!