How to edit inbuilt code completion syntax in ST3?
For example: When I work on c file, I type
for
and hit tab, it gives me this:
for (int i = 0; i < count; ++i)
{
/* code */
}
This hurts my code formatting, and my eyes, what I would like is
for (int i = 0; i < count; ++i){
/* code */
}
Which file should I edit to do it when working with ST3 on Ubuntu?