Skip to content

Instantly share code, notes, and snippets.

@nico4
Created December 19, 2013 08:36
Show Gist options
  • Save nico4/8036203 to your computer and use it in GitHub Desktop.
Save nico4/8036203 to your computer and use it in GitHub Desktop.
[
// Rebind "go to file" to cmd+shift+O
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {
"overlay": "goto",
"show_files": true
}},
// Rebind swap line up/down to cmd+shift+up/down
{ "keys": ["super+shift+down"], "command": "swap_line_down" },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
// Delete a line with cmd+delete
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {
"file": "Packages/Default/Delete Line.sublime-macro"
}},
// Reindent selection with cmd+alt+L
{ "keys": ["super+alt+l"], "command": "reindent"}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment