Skip to content

Instantly share code, notes, and snippets.

@steel1990
Created July 15, 2014 04:02
Show Gist options
  • Save steel1990/4f64c469b95530507c14 to your computer and use it in GitHub Desktop.
Save steel1990/4f64c469b95530507c14 to your computer and use it in GitHub Desktop.
[
{ "keys": ["ctrl+alt+h"], "command": "clipboard_display" },
{ "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
{ "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -1.0 } },
{
"keys": [
"alt+down"
],
"args": {
"action": "decrement_number_by_1"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.decrement_number_by_1"
}
]
},
{
"keys": [
"alt+up"
],
"args": {
"action": "increment_number_by_1"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.increment_number_by_1"
}
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment