Hi,

2 feature requests:

First:
The following has been bugging me since day 1 of Lazarus:

Code completion for methods works from interface -> implementation.

However, in Delphi, the following also works:

Given the form declaration:

  TForm1 = class(TForm)
  private
    { private declarations }
  public
    { public declarations }
  end;

I can type the following in the implementation section:

Procedure TForm1.DoSomething;

begin
end;

I can place the cursor anywhere in the DoSomething method, and press 
Ctrl-Shift-C.
The IDE then places
  Procedure DoSomething;
In the form declaration (in the private section).

This does not work in Lazarus. Could this be added ?

In practice in Delphi, I use this method infinitely more often than the Interface -> implementation way; I really miss this.

Second:

if you add the 'Gexperts' to the Delphi IDE (highly recommended) then
'ALT Gr'-Arrow Up or 'ALT Gr'-Arrow Down ('Alt Gr' is the right Alt key) moves to the previous/next occurrence of
the word/identifier you are standing on.

This is also something which I would like to see in the Lazarus IDE, as I also use this quite a lot.



Michael.

_________________________________________________________________
    To unsubscribe: mail [EMAIL PROTECTED] with
               "unsubscribe" as the Subject
  archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to