Skip to content

Instantly share code, notes, and snippets.

@bdsexton
Created April 4, 2014 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdsexton/9984992 to your computer and use it in GitHub Desktop.
Save bdsexton/9984992 to your computer and use it in GitHub Desktop.
New Sublime Text Layouts (One Left and Two Right & Two Left and One Right) via Keyboard
[
{
"keys": ["shift+alt+super+left"],
"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]
]
}
},
{
"keys": ["shift+alt+super+right"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.5, 1.0],
"rows": [0.0, 0.5, 1.0],
"cells":
[
[0, 0, 1, 1],
[0, 1, 1, 2],
[1, 0, 2, 2]
]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment