Autoreplace enhancement request

michaeldias

Member²
The v8.0 autoreplace only covers 1 line of code.
I can put together long string but then I lose any indentation I may want.

For example
forr=FOR R_| IN(
SELECT
FROM
)LOOP

END LOOP;

Can the featuer be extending over 1 line?
I am still using v7.0 which supports the softema textType plugin that caters for this.
 
Hi,

it is possible in v8. Just after the forr= use the rigth-mouse-context-menu to point to an before created template 'forr' with the following text.

FOR R_| IN(
SELECT
FROM
)LOOP
[#]
END LOOP;
 
Or you can use my template plugin where you can assign a hotkey to a menuitem. You can even make different templates for different cases like:
ei => end if;
EI => END IF;
 
Back
Top