Skip to content

Instantly share code, notes, and snippets.

@KrYpTeD974
Created January 9, 2013 19:17
Show Gist options
  • Save KrYpTeD974/4495984 to your computer and use it in GitHub Desktop.
Save KrYpTeD974/4495984 to your computer and use it in GitHub Desktop.
SublimeText
[ { "keys": ["ctrl+n"], "command": "advanced_new_file"},
{ "keys": ["ctrl+shift+n"], "command": "advanced_new_file", "args": {"is_python": true}},
{ "keys": ["ctrl+["], "command": "previous_edit" },
{ "keys": ["ctrl+]"], "command": "next_edit" },
{ "keys": ["ctrl+w"], "command": "undo" },
{ "keys": ["ctrl+shift+w"], "command": "redo" },
{ "keys": ["ctrl+q"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+z"], "command": "close" },
{ "keys": ["alt+d"], "command": "toggle_minimap" },
{ "keys": ["alt+s"], "command": "toggle_side_bar" },
//layout 1/3 2/3
{
"keys": ["alt+shift+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]]
}
},
//layout 2/3 1/3
{
"keys": ["alt+shift+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]]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment