Author Topic: How can I stop SlickEdit from reformatting code in code templates?  (Read 5408 times)

alex

  • Community Member
  • Posts: 64
  • Hero Points: 6
Code templates are a great feature that I've just started to use.  I'm able to use them to create sets of empty files just fine, but using them to create full skeleton code doesn't quite work for me.

My specific problem is that it reformats my namespace keywords.  I have them like so:

namespace a {
namespace b {
namespace c {

}}}

But when I create a file from a template, it reformats these for me:

namespace a {
   namespace b {
      namespace c {

      }}}

Since I currently have aliases that create skeleton files, I'm not inclined to use code templates for this until I figure out how to stop it from doing this reformatting.

Is there a setting I can (un)check?

Thanks!