Created
July 15, 2014 04:02
-
-
Save steel1990/4f64c469b95530507c14 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "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