Skip to content

Instantly share code, notes, and snippets.

@jarontai
Created July 9, 2014 03:53
Show Gist options
  • Save jarontai/272f14146fa005b7f1e9 to your computer and use it in GitHub Desktop.
Save jarontai/272f14146fa005b7f1e9 to your computer and use it in GitHub Desktop.
sublime keys
[
{ "keys": ["j", "j"],
"command": "exit_insert_mode",
"context":
[
{ "key": "setting.command_mode", "operand": false },
{ "key": "setting.is_widget", "operand": false }
]
},
{ "keys": ["tab"], "command": "move", "args": {"by": "characters", "forward": true},
"context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "not_equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^(\\]|\\)|\\}|>|\\\"|'|\\;)", "match_all": true },
{ "key": "has_next_field", "operator": "not_equal", "operand": true }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment