Skip to content

Instantly share code, notes, and snippets.

@antoniobg
Created December 3, 2015 09:30
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 antoniobg/d3bce2f2cd86a99bac35 to your computer and use it in GitHub Desktop.
Save antoniobg/d3bce2f2cd86a99bac35 to your computer and use it in GitHub Desktop.
Sublime keybindings
[
{ "keys": ["alt+space"], "command": "insert", "args": {"characters": " "} },
{ "keys": ["alt+shift+space"], "command": "insert", "args": {"characters": " "} },
{
"keys": ["super+alt+down"],
"command": "set_layout",
"args":
{
"cols": [0.0, 1.0],
"rows": [0.0, 0.5, 1.0],
"cells": [[0, 0, 1, 1], [0, 1, 1, 2]]
}
},
{
"keys": ["super+alt+up"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.5, 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+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+shift+g"], "command": "goto_definition"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment