How to disable source formatter in Delphi 2010 for code sections?

something like Jedi code format:

//jcf:format=off
.
.
.
//jcf:format=on
+3
source share
2 answers

As far as I know, there is no such option for inline formatting.

For write only: The formatting code in my experimental version of GExperts uses

{(*}
...
{*)}

for this purpose. Since it does not support some of the later Delphi language extensions, such as subtypes, you must use it in this case.

0
source

You cannot do this without the help of the delphi addon. In Delphi, this option is generally absent.

0
source

Source: https://habr.com/ru/post/1733232/


All Articles