Skip to content

Instantly share code, notes, and snippets.

@zachleat
Created October 16, 2013 22:15
Show Gist options
  • Select an option

  • Save zachleat/7015883 to your computer and use it in GitHub Desktop.

Select an option

Save zachleat/7015883 to your computer and use it in GitHub Desktop.
Sublime Text 2 User Key Bindings
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+super+t"], "command": "swap_case" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{
"keys": ["super+shift+enter"],
"command": "run_macro_file", "args": {"file": "Packages/User/ConvertSpacesToTabs.sublime-macro"}
},
{ "keys": ["ctrl+super+up"], "command": "duplicate_line" },
{ "keys": ["ctrl+super+down"], "command": "duplicate_line" },
{ "keys": ["ctrl+s"], "command": "toggle_side_bar" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment