sp_before_semi
Category: Spacing options Type: multiple (ignore add remove force) Default: remove
Add or remove space before ';'. Default: remove
int a;int b; /* comment */
raw CPP code | sp_before_semi=ignore sp_after_semi=ignore |
sp_before_semi=add sp_after_semi=ignore |
sp_before_semi=remove sp_after_semi=ignore |
sp_before_semi=force sp_after_semi=ignore |
space sp_before_semi=force sp_after_semi=ignore |
---|---|---|---|---|---|
int a;int b;int c;/*comment*/ int a ; int b ; int c ; /*comment*/ | int a;int b;int c;/*comment*/ int a ; int b ; int c ; /*comment*/ | int a ;int b ;int c ;/*comment*/ int a ; int b ; int c ; /*comment*/ | int a;int b;int c;/*comment*/ int a; int b; int c; /*comment*/ | int a ;int b ;int c ;/*comment*/ int a ; int b ; int c ; /*comment*/ | inta;intb;intc;/*comment*/ inta;intb;intc;/*comment*/ |
Take care: the default is 'remove' for sp_before_semi and 'add' for sp_after_semi. In the examples above sp_after_semi is forced to 'ignore'. Edited by JEAYNE
Not the best code for this option? See how to improve the .uds file used to generate these examples.