Saving is adding line feeds

mike

Member³
We have "show errors" at the end of our packages, so it looks like this:

Code:
create or replace package body xxexample_package
...
end xxexample_package
/
show errors
/

So, there is a tab with a "?" that just has "show errors" and the slash. I'm using 64 bit version 12.0.3. I'm using the ftp plugin. I have the preference "Linebreaks when saving files" as "Unix format(lf).

When I save the file, close it and open it again, there are 2 blank lines added before the last slash. It keeps adding lines every time I save and close it. So, after 2 times of editing it, the file now looks like:

Code:
create or replace package body xxexample_package
...
end xxexample_package
/
show errors

/

After awhile, there are a lot of blank lines! Please change it so this doesn't happen and I don't have to keep deleting blank lines.

Thanks!
Mike
 
Last edited:
We'll check it out.

Note that SHOW ERRORS is a SQL*Plus command and should therefore not be terminated with a slash. Only SQL and PL/SQL commands should be terminated with a slash.
 
Back
Top