Skip to content

Instantly share code, notes, and snippets.

@aaronlelevier
Created June 5, 2018 11:18
Show Gist options
  • Save aaronlelevier/872a100844b2d8811ba9ff2ad66b35eb to your computer and use it in GitHub Desktop.
Save aaronlelevier/872a100844b2d8811ba9ff2ad66b35eb to your computer and use it in GitHub Desktop.
Sublime Text 3 Key Bindings
[{
"keys": ["alt+up"],
"command": "scroll_lines",
"args": {
"amount": 30.0
}
}, {
"keys": ["alt+down"],
"command": "scroll_lines",
"args": {
"amount": -30.0
}
}, {
"keys": ["alt+s"],
"command": "toggle_in_selection",
"context": [{
"key": "panel",
"operand": "replace"
}, {
"key": "panel_has_focus"
}]
}, {
"keys": ["ctrl+alt+s"],
"command": "reveal_in_side_bar"
},
{
"keys": ["super+alt+up"],
"command": "jump_back"
},
{
"keys": ["super+1"],
"command": "toggle_side_bar"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment