Skip to content

Instantly share code, notes, and snippets.

@amitlzkpa
Last active February 21, 2019 16:03
Show Gist options
  • Save amitlzkpa/e681bb1012733d1aafb1b55079d0a933 to your computer and use it in GitHub Desktop.
Save amitlzkpa/e681bb1012733d1aafb1b55079d0a933 to your computer and use it in GitHub Desktop.
Sublime settings with shortcuts for shifting group focus, javascript log and reindent
[
{ "keys": ["ctrl+alt+left"], "command": "focus_neighboring_group", "args": {"forward": false} },
{ "keys": ["ctrl+alt+right"], "command": "focus_neighboring_group" },
{ "keys": ["ctrl+p"],
"command": "insert_snippet",
"args": {
"contents": "console.log(${1:}$SELECTION);${0}"
}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.js", "match_all": true }
]
},
{ "keys": ["ctrl+k", "ctrl+d"], "command": "reindent"},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment