CoolFormat icon indicating copy to clipboard operation
CoolFormat copied to clipboard

Dont format empty spaces

Open ilwsm opened this issue 6 years ago • 0 comments

Don't format c text , like this:

int main () {
    int y, 				ty;

    return  			0;
}

must be:

int main() {
    int y, ty;

    return 0;
}

ilwsm avatar Mar 20 '19 13:03 ilwsm