Skip to content

Instantly share code, notes, and snippets.

@deadblue
Last active August 29, 2015 14:02
Show Gist options
  • Save deadblue/c0a38d6cdce89698b4c3 to your computer and use it in GitHub Desktop.
Save deadblue/c0a38d6cdce89698b4c3 to your computer and use it in GitHub Desktop.
Main.sublime-menu
[
{
"id" : "view",
"children" : [
{
"id" : "layout",
"children" : [
{
"caption" : "Layout L1R2",
"command": "set_layout",
"args": {
"cols": [0.0, 0.5, 1.0],
"rows": [0.0, 0.5, 1.0],
"cells": [
[0, 0, 1, 2],
[1, 0, 2, 1],
[1, 1, 2, 2]
]
}
},
{
"caption" : "Layout T2B1",
"command": "set_layout",
"args": {
"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, 2, 2]
]
}
}
]
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment