Skip to content

Instantly share code, notes, and snippets.

View ryanrobertsname's full-sized avatar

Ryan Roberts ryanrobertsname

  • California, USA
View GitHub Profile
@nilium
nilium / key-bindings.json
Created August 11, 2012 23:14
A Sublime Text 2 plugin to enable running multiple commands in any given context from a single key binding.
[
{
"keys": ["ctrl+w"],
"command": "run_multiple",
"args": {
"commands": [
{"command": "find_under_expand", "args": null, "context": "window"},
{"command": "show_panel", "args": {"panel": "find"}, "context": "window"}
]
}