Created
November 25, 2012 06:32
-
-
Save lalthomas/4142636 to your computer and use it in GitHub Desktop.
context text editor object pascal autotext template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[arrayc | array declaration (const)] | |
array[0..|] of = (); | |
[arrayd | array declaration (var)] | |
array[0..|] of ; | |
[casee | case statement (with else)] | |
case | of | |
: ; | |
: ; | |
else ; | |
end; | |
[cases | case statement] | |
case | of | |
: ; | |
: ; | |
end; | |
[classc | class declaration (with Create/Destroy overrides)] | |
T| = class(T) | |
private | |
protected | |
public | |
constructor Create; override; | |
destructor Destroy; override; | |
published | |
end; | |
[classd | class declaration (no parts)] | |
T| = class(T) | |
end; | |
[classf | class declaration (all parts)] | |
T| = class(T) | |
private | |
protected | |
public | |
published | |
end; | |
[forb | for statement] | |
for | := to do | |
begin | |
end; | |
[fors | for (no begin/end)] | |
for | := to do | |
[function | function declaration] | |
function |(): ; | |
begin | |
end; | |
[ifb | if statement] | |
if | then | |
begin | |
end; | |
[ife | if then (no begin/end) else (no begin/end)] | |
if | then | |
else | |
[ifeb | if then else] | |
if | then | |
begin | |
end | |
else | |
begin | |
end; | |
[ifs | if (no begin/end)] | |
if | then | |
[procedure | procedure declaration] | |
procedure |(); | |
begin | |
end; | |
[trycf | try finally (with Create/Free)] | |
|variable := typename.Create; | |
try | |
finally | |
variable.Free; | |
end; | |
[trye | try except] | |
try | |
| | |
except | |
end; | |
[tryf | try finally] | |
try | |
| | |
finally | |
end; | |
[whileb | while statement] | |
while | do | |
begin | |
end; | |
[whiles | while (no begin)] | |
while | do | |
[withb | with statement] | |
with | do | |
begin | |
end; | |
[withs | with (no begin)] | |
with | do | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment