Sublime Forum

SublimeGDB: layout question

#1

the debug views layout inside SublimeGDB’s json config is something like this :

    "layout":
    {
        "cols": [0.0, 0.33, 0.66, 1.0],
        "rows": [0.0, 0.75, 1.0],
        "cells": [0, 0, 3, 1],
            [0, 1, 1, 2], [1, 1, 2, 2], [2, 1, 3, 2]]
    },

I want to change it to two columns, I persume each value inside “cols” is vertical rulers in the layout , which I changed it to :

    "cols": [0.0, 0.5, 1.0]

But I can’t understand the “cells” field, tried to change it to different values, but always the resulting actual layout is faulty (in the same single view as the other source files)… could someone clarify this field, and describe how can I change it ?

thanks

0 Likes

#2

Resolved by reading this thread:
https://forum.sublimetext.com/t/set-layout-reference/5713/1

0 Likes