home  

indent_braces_no_func

Properties

  Category: Indenting options
      Type: boolean [false, true]
   Default: false

Description

Whether to disable indenting function braces if indent_braces=true.

Examples

raw CPP code indent_braces_no_func=false
indent_braces=true
indent_braces_no_func=true
indent_braces=true
int main(int argc,char**argv){ if(argc>1){ printf("Hello %s!\n",argv[1]); }else{ puts("Hello world!"); } return 0; } int main(int argc,char**argv) { if(argc>1) { printf("Hello %s!\n",argv[1]); } else { puts("Hello world!"); } return 0; } int main(int argc,char**argv){ if(argc>1){ printf("Hello %s!\n",argv[1]); }else{ puts("Hello world!"); } return 0; } int main(int argc,char**argv) { if(argc>1) { printf("Hello %s!\n",argv[1]); } else { puts("Hello world!"); } return 0; } int main(int argc,char**argv){ if(argc>1){ printf("Hello %s!\n",argv[1]); }else{ puts("Hello world!"); } return 0; } int main(int argc,char**argv) { if(argc>1) { printf("Hello %s!\n",argv[1]); } else { puts("Hello world!"); } return 0; }
 

Info

  Edited by JEAYNE

Not the best code for this option? See how to improve the .uds file used to generate these examples.