Skip to content

Instantly share code, notes, and snippets.

@sansumbrella
Created January 26, 2015 18:22
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 sansumbrella/fae0ca475a5c965e6e06 to your computer and use it in GitHub Desktop.
Save sansumbrella/fae0ca475a5c965e6e06 to your computer and use it in GitHub Desktop.
Sublime Text 2 Keybindings Preferences
[
// match XCode switch file key binding
{ "keys": ["super+ctrl+up"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "h", "ipp", "inl", "m", "mm"]} }
, { "keys": ["super+ctrl+down"], "command": "switch_file", "args": {"extensions": ["cpp", "cxx", "cc", "c", "hpp", "hxx", "h", "ipp", "inl", "m", "mm"]} }
// move line like XCode
, { "keys": ["super+option+["], "command": "swap_line_up" }
, { "keys": ["super+option+]"], "command": "swap_line_down" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment