Skip to content

Instantly share code, notes, and snippets.

@mswieboda
Created February 7, 2017 19:48
Show Gist options
  • Save mswieboda/4de8f9279dfcdd9519390e4d0f41c158 to your computer and use it in GitHub Desktop.
Save mswieboda/4de8f9279dfcdd9519390e4d0f41c158 to your computer and use it in GitHub Desktop.
Custom Sublime Key bindings
[
{
"keys": ["super+alt+r"], "command": "goto_definition"
},
// Select last tab in group
// NOTE: Requires "Chain of Command" package for "chain" command
{
"keys": ["super+9"],
"command": "chain",
"args": {
"commands": [
["select_by_index", { "index": 0 }],
["prev_view"]
]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment