May be in next version

AlienZzzz

Member²
if add "Special Copy" feature then add "Special Paste" feature
Auto Complete from cursor, records, select and ets...
Look for this:

1.
declare
Cursor c_Emp is select emp.id from emp;
....
....
begin
for CurRec in c_Emp loop
Var := CurRec.[!!!!] - DropDown List !!
end loop;
end;
2.
Type MyRec is Record (
emp_id number;

);
EmpRec MyRec;
...
...
EmpRec.[!!!!] DropDown List
3.
SELECT [!!!!] (DropDown List) FROM EMP;
 
I think you may be looking for the 'template plug-in' which I created and is available at bar-solutions.com .
Go to software and look for the template plug-in (bottom of the page). (Maybe it will soon be on the Add-ons page here ;) )
With this plugin you can assign a template to a keyword. For example:
select(press hotkey)
can expand to

Code:
select |
  from
 where 1=1
   and
The cursor will be on the location of the pipe (|)

Hope this helps.

Regards,
Patrick
 
Back
Top