Skip to content

Instantly share code, notes, and snippets.

@lcdsantos
Last active September 2, 2016 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lcdsantos/ca5f447e13b6d1e12f06626bc5b09677 to your computer and use it in GitHub Desktop.
Save lcdsantos/ca5f447e13b6d1e12f06626bc5b09677 to your computer and use it in GitHub Desktop.
Sublime Text Keyboard shortcuts
[
{
"keys": [
"ctrl+v"
],
"command": "paste_and_indent"
},
{
"keys": [
"ctrl+shift+v"
],
"command": "paste"
},
{
"keys": [
"ctrl+shift+space"
],
"command": "expand_selection",
"args": {
"to": "scope"
}
},
{
"keys": [
"ctrl+."
],
"command": "expand_selection_to_quotes"
},
{
"keys": [
"shift+ctrl+alt+right"
],
"args": {
"action": "select_next_item"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.select_next_item"
}
]
},
{
"keys": [
"shift+ctrl+alt+left"
],
"args": {
"action": "select_previous_item"
},
"command": "run_emmet_action",
"context": [
{
"key": "emmet_action_enabled.select_previous_item"
}
]
},
{
"keys": [
"ctrl+alt+p"
],
"command": "prompt_select_workspace"
},
{
"keys": [
"ctrl+shift+space"
],
"command": "expand_region"
},
{
"keys": [
"ctrl+u"
],
"command": "expand_region",
"args": {
"undo": true
},
"context": [
{
"key": "expand_region_soft_undo"
}
]
},
{
"keys": [
"ctrl+shift+\\"
],
"command": "change_quotes"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment