Skip to content

Instantly share code, notes, and snippets.

@sillero
Last active January 2, 2016 09:29
Show Gist options
  • Save sillero/8283016 to your computer and use it in GitHub Desktop.
Save sillero/8283016 to your computer and use it in GitHub Desktop.
Sublime Text 2/3 Layouts (created with http://fatihak.in/app/sublimelayout/)

####Sublime Text 2/3 Layouts (created with http://fatihak.in/app/sublimelayout/)

Place in %appdata%\Sublime Text 3\Packages\User

  • 3 col top, 1 row bottom
  • 2 rows left, 1 col right
  • 1 col left, 2 rows right
[
{
"id": "view",
"children": [
{
"id": "layout",
"children": [
{
"command": "set_layout",
"caption": "3 col top, 1 row bottom",
"args": {
"cols": [0, 0.33, 0.67, 1],
"rows": [0, 0.5, 1 ],
"cells": [
[0, 0, 1, 1],
[1, 0, 2, 1],
[2, 0, 3, 1],
[0, 1, 3, 2]
]
}
},
{
"command": "set_layout",
"caption": "2 rows left, 1 col right",
"args": {
"cols": [0, 0.5, 1],
"rows": [0, 0.5, 1],
"cells": [
[0, 0, 1, 1],
[1, 0, 2, 2],
[0, 1, 1, 2]
]
}
},
{
"command": "set_layout",
"caption": "1 col left, 2 rows right",
"args": {
"cols": [0, 0.5, 1],
"rows": [0, 0.5, 1],
"cells": [
[0, 0, 1, 2],
[1, 0, 2, 1],
[1, 1, 2, 2]
]
}
}
]
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment