Automatic indenting of (PL) SQL
Submitted by Tuesday, 18 December, 2007 - 07:29
on
When I edit PL-SQL files in jedit, with jedit set to PL-SQL (or any other SQL) mode, C-i removes all indentation rather than fixing it. For example
BEGIN
____select seq.nextval into col1 from dual ;
____return col1;
END;
becomes
BEGIN
select seq.nextval into col1 from dual ;
return col1;
END;
after C-i
How can I fix this?
(had to add underscores since the forum removed leading spaces and tabs)
BEGIN
____select seq.nextval into col1 from dual ;
____return col1;
END;
becomes
BEGIN
select seq.nextval into col1 from dual ;
return col1;
END;
after C-i
How can I fix this?
(had to add underscores since the forum removed leading spaces and tabs)