customize the "styler"

 

hello,

I use the styler(Ctrl,) when writing code in the meta editor, and every time it adds automatically above every function, this:

//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+

How can I stop it?


Thank you,

yuv.

 

No.

 
I love it.
 
If you use linux,it's possible
 
yuv98:

hello,

I use the styler(Ctrl,) when writing code in the meta editor, and every time it adds automatically above every function, this:

How can I stop it?


Thank you,

yuv.

Hi,

it is an old question so I wonder if I can ask you that "have you found any workaround for that unpleasant issue?"

 
HappyHurts:
If you use linux,it's possible

Hi,

I gave it a try and the result is still the same

 
Ehsan Haghpanah: I can ask you that "have you found any workaround for that unpleasant issue?"

Download a real styler and run that on your file.

 

Add an empty comment before the line.

//
int OnInit()

Or, use namespaces:

namespace test
{
class CTest // styler adds no heading here
  {
  ...
  };
}
 
lippmaje:

Add an empty comment before the line.

Or, use namespaces:

2nd option is brilliant!!