Skip to content

Instantly share code, notes, and snippets.

@andreascarpello
Created March 20, 2015 09:00
Show Gist options
  • Save andreascarpello/28f3147edf5c73dde198 to your computer and use it in GitHub Desktop.
Save andreascarpello/28f3147edf5c73dde198 to your computer and use it in GitHub Desktop.
Sublime user key map
[
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
{ "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -1.0 } },
{ "keys": ["ctrl+shift+l"], "command": "expand_selection", "args": {"to": "line"} },
{
"keys": ["ctrl+shift+r"], "command": "browser_refresh", "args": {
"auto_save": true,
"delay": 0.5,
"activate_browser": true,
"browser_name" : "all"
}
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment