Categories
Programming

Sublime text custom layout tutorial : inside out with examples

SublimeText3 editor is something that I am using on daily basis. I must say that is one of fastest editor that I have ever used. One way if you want to be more productiv is to setup custom layout in diffrent develepment mode (coding, reviewing code, debuging etc).

If you open console and type window.get_layout() you will get something like this :


{
    'cols': [0.0,0.5,1.0],
    'rows': [0.0,0.5,1.0],
    'cells': [
        [0,0,1,1],
        [1,0,2,1],
        [0,1,1,2],
        [1,1,2,2]
    ]
}

So what does it means? How is mapped your layout? It is pretty simple. Lets start 🙂