CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2013
    Posts
    161

    code blocks smart braces and indents...

    some time ago I used a function in code blocks which ordered my braces nicely by just clicking on it but it seems I can't find it anymore..can someone point me in the right directions..example..if i had a code like this..
    Code:
      if (something){do something &&
       &&something again} else {don't do anything}
    after clicking on this option or function in code blocks my code get arrange nicely as so...
    Code:
    if (something)
     {
      do something && something again
     }
    else {don't do anything}

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: code blocks smart braces and indents...

    Have you tried searching bing or google for '"code blocks" code formatting'?

  3. #3
    Join Date
    Jul 2013
    Posts
    161

    Re: code blocks smart braces and indents...

    Quote Originally Posted by Arjay View Post
    Have you tried searching bing or google for '"code blocks" code formatting'?

    may be that is the phrase I needed "code formatting" ...now I will seek..thanks ...I couldn't find anything earlier...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured