Skip to content

Instantly share code, notes, and snippets.

@agent-simon-s
Last active November 6, 2017 03:16
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 agent-simon-s/71e3a2700de8d48f8aedf09f9bdc4c91 to your computer and use it in GitHub Desktop.
Save agent-simon-s/71e3a2700de8d48f8aedf09f9bdc4c91 to your computer and use it in GitHub Desktop.
Sublime: Default user keymap
[
{ "keys": ["super+alt+tab"], "command": "toggle_side_bar" },
{ "keys": ["super+j"], "command": "join_lines" },
{ "keys": ["ctrl+super+m"], "command": "toggle_minimap" },
{
"keys": ["super+alt+left"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.78, 0.84, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
}
},
{
"keys": ["super+alt+down"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.16, 0.84, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
}
},
{
"keys": ["super+alt+right"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.16, 0.32, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
}
},
{
"keys": ["super+alt+up"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.33, 0.66, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1], [2, 0, 3, 1]]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment