Skip to content

Instantly share code, notes, and snippets.

@isevcik
Last active December 11, 2016 13:55
Show Gist options
  • Save isevcik/b0cc74a60decefe8f3a9ef35ceaadc3a to your computer and use it in GitHub Desktop.
Save isevcik/b0cc74a60decefe8f3a9ef35ceaadc3a to your computer and use it in GitHub Desktop.
[
// swap the keybindings for paste and paste_and_indent
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
// skip cursor after autocompleted })" with TAB
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)'}\"\\]]", "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
// allow selection indetation
{ "key": "selection_empty", "operator": "equal", "operand": true }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment