Skip to content

Instantly share code, notes, and snippets.

@vidaaudrey
Created August 11, 2015 16:58
Show Gist options
  • Save vidaaudrey/39dfd35ab975ed8bd88c to your computer and use it in GitHub Desktop.
Save vidaaudrey/39dfd35ab975ed8bd88c to your computer and use it in GitHub Desktop.
Speedy Sublime Settings for Web Development
[
{ "keys": ["super+option+m"], "command": "quick_file_move" },
{ "keys": ["super+option+p"], "command": "autoprefixer" },
{ "keys": ["super+option+0"],
"command": "side_bar_open_in_browser" ,
"args":{"paths":[], "type":"testing", "browser":""}
},
{ "keys": ["super+option+9"],
"command": "side_bar_open_in_browser",
"args":{"paths":[], "type":"production", "browser":""}
},
{ "keys": ["super+option+w"], "command": "close_other_tabs" },
{ "keys": ["super+j"], "command": "join_lines" },
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{
"keys": ["super+alt+0"],
"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+9"],
"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+0"],
"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+9"],
"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]]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment