Difference between revisions of "IDE Window: Code Templates"

From Free Pascal wiki
Jump to navigationJump to search
 
(11 intermediate revisions by 4 users not shown)
Line 17: Line 17:
 
</pre>
 
</pre>
  
Here the pipe symbol (|) represents the blinking screen cursor. Press Ctrl+j. The tree characters you typed ('ifb') will be expanded to
+
Here the pipe symbol (|) represents the blinking screen cursor. Press Ctrl+j. The three characters you typed ('ifb') will be expanded to
  
 
<pre>
 
<pre>
Line 25: Line 25:
 
</pre>
 
</pre>
  
Again the pipe represents the cursor. You can see the cursor has moved as well.
+
Again the pipe represents the cursor blinking onscreen. You will see that the cursor has been moved.
 
+
This template is called 'ifb' and it is defined as follows:
This template is called 'ifb' and is defined as follows:
 
 
<pre>
 
<pre>
 
if | then begin
 
if | then begin
Line 34: Line 33:
 
</pre>
 
</pre>
  
This time the pipe '|' is a real character, part of this code template's definition. It stipulates where the cursor will be positioned after the template has been inserted.
+
This time the pipe '|' is an actual character you type as part of this code template's definition. It stipulates where the cursor will be positioned after the template has been inserted.
  
 
== Example 2 - Using macros ==
 
== Example 2 - Using macros ==
  
This example shows how to create a code template 'w' which inserts a line with the current procedure name.
+
This second example shows you how to create a code template 'w' which repeats the name of the current procedure somewhere in your code. For long names this can be quite a time saver, and it also types it for you without any spelling mistakes!
  
* Click on the 'Add' button. A dialog pops up. Set Token to 'w' and Comment to 'writeln(ProcName)', then click Ok.
+
* In the Code Templates dialog, click on the [Add] button. In the dialog which pops up set Token to 'w', and Comment to 'writeln(ProcName)', then click [OK].
* Your new item has been added to the list box.
+
* Your new code template item has been added to the list box.
 
* In the source below fill in
 
* In the source below fill in
 
   writeln(' ',|);
 
   writeln(' ',|);
* The pipe is really a pipe and defines the new cursor position. Now place the cursor after the first ' and click on the 'Insert macro' button. A dialog pops up showing all available code macros. Choose 'ProcedureName' and click 'Insert Macro'. You should now have:
+
* Here pipe is an actual pipe character defining the new cursor position. Now place the cursor after the first apostrophe (') and click on the 'Insert macro' button. A dialog pops up listing all available code macros. Choose 'ProcedureName' and click 'Insert Macro'. You should now have:
 
   writeln('$ProcedureName() ',|);
 
   writeln('$ProcedureName() ',|);
* Click 'Ok' to save and close the code template dialog.
+
* Click [OK] to save and close the Code Templates dialog.
* Move the cursor into a method body, type 'w':
+
* Move the cursor into the body of a method, and type 'w'. For instance:
For instance:
 
 
   procedure TForm1.FormDestroy(Sender: TObject);
 
   procedure TForm1.FormDestroy(Sender: TObject);
 
   begin
 
   begin
 
     w|
 
     w|
 
   end;
 
   end;
The pipe should represent here the blinking cursor, not a character.
+
(Here the pipe represents the blinking cursor, not a character).
 
* Press Ctrl+j. You will get:
 
* Press Ctrl+j. You will get:
 
   procedure TForm1.FormDestroy(Sender: TObject);
 
   procedure TForm1.FormDestroy(Sender: TObject);
Line 60: Line 58:
 
   end;
 
   end;
  
==Auto complete on==
+
== Example 3 - Editing macros parameters==
 +
 
 +
* Go: Tools - Code Templates, in group box Templates press button Add
 +
* Input Token: w
 +
* Input Comment: While i<count do
 +
* Press Ok
 +
* In field below Copy/Paste next text:
 +
  $Param(i):=0;
 +
  while($Param(i,Sync=1)<$Param(Count))do
 +
  begin
 +
    |
 +
  inc($Param(i,Sync=1));
 +
  end;   
 +
* Set next check-boxes: Enable Macros,  line break, do not add character.
 +
* Somewhere in editor where you want cycle type letter 'w' (without brackets) and press Enter
 +
* Now you can type name of counter used instead of 'i' (simultaneously in several places) and press Tab - for edit next parameter. You can press Esc any time to exit from Macros
 +
 
 +
==Template Autocompletion==
  
Code templates can be invoked by the shortcut Ctrl-j or by an event. You can set for each template on what event it is executed. You can enable none, some or all.
+
Code templates are invoked either by using the Ctrl+j shortcut, or (if you set this option) automatically following particular events. For each template you can specify the event (if any) that automatically invokes it. You can enable none, some or all of the following events:
  
*line break - whenever the user presses the 'Return' or 'Enter' key
+
*line break - insert the template whenever the user presses the [Return] or [Enter] key
*space - whenever the user presses the Space bar.
+
*space - insert the template whenever the user presses the [Space bar].
*word end - whenever the user presses a key that ends a word. For example when typing 'b;' the code template 'b' can be executed.
+
*word end - whenever the user presses a word-ending key. For example, when typing 'b;' the code template 'b' can be executed.
*do not add character - this option can be combined with any of the above. When enabled the triggering key will not be inserted. For example when the option 'space' is enabled and the user triggers a template by pressing the space bar, the space character will not be inserted in the source editor.
+
*do not add character - this option can be combined with any of the above. When enabled the triggering key itself will not be inserted. For example when the option 'space' is enabled and the user triggers a template insertion by pressing the space bar, the space character itself will not be inserted in the source editor.
  
 
==Macros==
 
==Macros==
Line 78: Line 93:
 
See ide/codetemplatesdlg.pas procedure CreateStandardCodeMacros for examples.
 
See ide/codetemplatesdlg.pas procedure CreateStandardCodeMacros for examples.
  
=DCI file format=
+
==DCI file format==
  
 
The default dci file of the IDE is ''pcp/lazarus.dci'', where ''pcp'' is your primary config path (e.g. under Linux $HOME/.lazarus). If this file is not present the IDE will copy the file ide/lazarus_dci_file.dci.
 
The default dci file of the IDE is ''pcp/lazarus.dci'', where ''pcp'' is your primary config path (e.g. under Linux $HOME/.lazarus). If this file is not present the IDE will copy the file ide/lazarus_dci_file.dci.

Latest revision as of 14:23, 14 July 2016

Deutsch (de) English (en) español (es) suomi (fi) français (fr)

What are Code Templates?

A Code Template is a section of 'boiler plate' code with an associated abbreviation which invokes its insertion. For example, you can type 'cl' in the Source Editor, and then press the Ctrl+J keyboard shortcut to invoke the code template(s) starting with 'cl'. This feature is a great time saver.

The Code Templates dialog (accessed via the Tools|Code Templates... menu option) allows you to edit existing templates, or add your own templates.

Code template text can contain macros, and you can even add your own macros to the list of those already available by creating a design time package and using the macrointf.pas of the IDEIntf package.

Example 1 - ifb

type

  ifb|

Here the pipe symbol (|) represents the blinking screen cursor. Press Ctrl+j. The three characters you typed ('ifb') will be expanded to

  if | then begin

  end;

Again the pipe represents the cursor blinking onscreen. You will see that the cursor has been moved. This template is called 'ifb' and it is defined as follows:

if | then begin

end; 

This time the pipe '|' is an actual character you type as part of this code template's definition. It stipulates where the cursor will be positioned after the template has been inserted.

Example 2 - Using macros

This second example shows you how to create a code template 'w' which repeats the name of the current procedure somewhere in your code. For long names this can be quite a time saver, and it also types it for you without any spelling mistakes!

  • In the Code Templates dialog, click on the [Add] button. In the dialog which pops up set Token to 'w', and Comment to 'writeln(ProcName)', then click [OK].
  • Your new code template item has been added to the list box.
  • In the source below fill in
 writeln(' ',|);
  • Here pipe is an actual pipe character defining the new cursor position. Now place the cursor after the first apostrophe (') and click on the 'Insert macro' button. A dialog pops up listing all available code macros. Choose 'ProcedureName' and click 'Insert Macro'. You should now have:
 writeln('$ProcedureName() ',|);
  • Click [OK] to save and close the Code Templates dialog.
  • Move the cursor into the body of a method, and type 'w'. For instance:
 procedure TForm1.FormDestroy(Sender: TObject);
 begin
   w|
 end;

(Here the pipe represents the blinking cursor, not a character).

  • Press Ctrl+j. You will get:
 procedure TForm1.FormDestroy(Sender: TObject);
 begin
   writeln('TForm1.FormDestroy ',|);
 end;

Example 3 - Editing macros parameters

  • Go: Tools - Code Templates, in group box Templates press button Add
  • Input Token: w
  • Input Comment: While i<count do
  • Press Ok
  • In field below Copy/Paste next text:
 $Param(i):=0;
 while($Param(i,Sync=1)<$Param(Count))do
 begin
   |
 inc($Param(i,Sync=1));
 end;     
  • Set next check-boxes: Enable Macros, line break, do not add character.
  • Somewhere in editor where you want cycle type letter 'w' (without brackets) and press Enter
  • Now you can type name of counter used instead of 'i' (simultaneously in several places) and press Tab - for edit next parameter. You can press Esc any time to exit from Macros

Template Autocompletion

Code templates are invoked either by using the Ctrl+j shortcut, or (if you set this option) automatically following particular events. For each template you can specify the event (if any) that automatically invokes it. You can enable none, some or all of the following events:

  • line break - insert the template whenever the user presses the [Return] or [Enter] key
  • space - insert the template whenever the user presses the [Space bar].
  • word end - whenever the user presses a word-ending key. For example, when typing 'b;' the code template 'b' can be executed.
  • do not add character - this option can be combined with any of the above. When enabled the triggering key itself will not be inserted. For example when the option 'space' is enabled and the user triggers a template insertion by pressing the space bar, the space character itself will not be inserted in the source editor.

Macros

Macros have the form $(MacroName) or $MacroName(Param1,...). Macros can be nested.

Define your own macros

You can register your own macros by writing a design time package and installing it. See ide/codetemplatesdlg.pas procedure CreateStandardCodeMacros for examples.

DCI file format

The default dci file of the IDE is pcp/lazarus.dci, where pcp is your primary config path (e.g. under Linux $HOME/.lazarus). If this file is not present the IDE will copy the file ide/lazarus_dci_file.dci.

A dci file is a text file with a list of templates.

Each template starts with line [name | description]. The template's value are the following lines.