Created
April 4, 2014 23:27
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ | |
"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