Skip to content

Instantly share code, notes, and snippets.

@bigandy
Created November 21, 2014 08:51
Show Gist options
  • Save bigandy/9be72cc647e7a90543a0 to your computer and use it in GitHub Desktop.
Save bigandy/9be72cc647e7a90543a0 to your computer and use it in GitHub Desktop.
Sublime Keybindings
[
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["ctrl+super+w"], "command": "close_all" },
{ "keys": ["super+ctrl+e"], "command": "open_file", "args": {"file": "${project}" } },
// { "keys": ["super+down"], "command": "goto_definition" },
{ "keys": ["super+b"], "command": "toggle_side_bar" },
{
"keys": ["ctrl+alt+left"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.666, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["ctrl+alt+right"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.333, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment