--NoFormat still adding indenting

I'm trying to turn off all beautification in just one package by putting --NoFormat Start and --NoFormat End just inside the CREATE and END statements. The package no longer reformats, but it still adds an additional indent of 3 spaces to every line. Is there a way to avoid this?

Here's the first few lines of the package as it appears in the source file:

Code:
CREATE OR REPLACE PACKAGE BODY general IS
   --NoFormat Start

   c_package_name               VARCHAR2(30) := upper ($$PLSQL_UNIT);
   c_schema_dot_package_name    VARCHAR2(61) := upper (sys_context('USERENV', 'CURRENT_SCHEMA')) || '.' || c_package_name;
   c_hydro_note_size INTEGER := 500;

   c_status_complete VARCHAR2(10) := 'Completed';
   c_status_unknown VARCHAR2(10) := 'Unknown';

and here's how it looks after it loads and the beautifier automatically runs over it:

Code:
CREATE OR REPLACE PACKAGE BODY general IS
      --NoFormat Start

      c_package_name               VARCHAR2(30) := upper ($$PLSQL_UNIT);
      c_schema_dot_package_name    VARCHAR2(61) := upper (sys_context('USERENV', 'CURRENT_SCHEMA')) || '.' || c_package_name;
      c_hydro_note_size INTEGER := 500;

      c_status_complete VARCHAR2(10) := 'Completed';
      c_status_unknown VARCHAR2(10) := 'Unknown';

Any suggestions how to avoid this?
 
There is currently no option to avoid this. The text within the NoFormat section is not reformatted, but the entire section is indeed placed at the appropriate indent position.
 
Back
Top