+7
Code completion keyboard shortcut clashes with default system-wide shortcut on Mac OS X
Ctrl+Space on Mac OS X opens the Spotlight search box by default. While this can be changed, it would be nice if the default keyboard shortcut for code completion in Sublime Text would not clash with it.
Customer support service by UserEcho
{ "keys": ["escape"], "command": "auto_complete", "context":
[
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "[\"a-zA-Z0-9_]$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^(?:\t| |\"|'|.|,|\\)|]|$)", "match_all": true }
]
},