Suppressing formatting

Shane42

Member
I do like the fact that you can stop the formatting of certain sections of code

I do have a suggestion

My default formatting spreads out large select statements over multiple lines, which most of the time is exactly what I want.

usually when I suppress the formatting it is because I am trying to condense simple (but lengthy) code. I just don't need the level of detail on some bits of SQL that is extremely straightforward yet lengthy.

Most of the time when suppressing format, I am trying to have a SQL statement that would normally format to 3 or 4 lines to just be a single line. Using the suppression tags, I still have at least two lines
-- NoFormat Start
select ... from ... where ...; -- NoFormat End

the "-- NoFormat Start" takes up a line.

Would it be possible to add an additional tag like -- NoFormat Line so something like the following would not format and be only on one line ?

select ... from ... where ...; -- NoFormat Line

Thank you in advance for your time.

Great product BTW

 
Back
Top