Skip to content

Instantly share code, notes, and snippets.

@zellwk
Created September 14, 2013 08:08
Show Gist options
  • Save zellwk/6559846 to your computer and use it in GitHub Desktop.
Save zellwk/6559846 to your computer and use it in GitHub Desktop.
Sublime text 3 key bindings
[{
"keys": ["super+alt+left"],
"command": "set_layout",
"args": {
"cols": [0.0, 0.33, 1.0],
"rows": [0.0, 1.0],
"cells": [
[0, 0, 1, 1],
[1, 0, 2, 1]
]
}
},
{
"keys": ["super+alt+right"],
"command": "set_layout",
"args": {
"cols": [0.0, 0.66, 1.0],
"rows": [0.0, 1.0],
"cells": [
[0, 0, 1, 1],
[1, 0, 2, 1]
]
}
},
{
"keys": ["super+alt+shift+up"],
"command": "set_layout",
"args": {
"cols": [0.0, 1.0],
"rows": [0.0, 0.33, 1.0],
"cells": [
[0, 0, 1, 1],
[0, 1, 1, 2]
]
}
},
{
"keys": ["super+alt+shift+down"],
"command": "set_layout",
"args": {
"cols": [0.0, 1.0],
"rows": [0.0, 0.66, 1.0],
"cells": [
[0, 0, 1, 1],
[0, 1, 1, 2]
]
}
},
{
"keys": ["super+."],
"command": "htmlprettify"
},
{
"keys": ["super+,"],
"command": "sass_beautify",
"content": [{
"key": "selector",
"operator": "equal",
"operand": "source.scss"
}]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment