Last commit before tagging and releasing

This commit is contained in:
capitaomorte
2009-08-29 17:59:02 +00:00
parent 15c7703b5b
commit b8dcf61367
640 changed files with 4360 additions and 77 deletions

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# contributor: Translated from TextMate Snippet
# name: Newline
# binding: "^
"
# --

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: begin
# contributor: Translated from TextMate Snippet
# name: begin … end
# --
begin
$0
end;

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: class
# contributor: Translated from TextMate Snippet
# name: class … end
# --
T${1:ClassName} = class
$0
end;

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# key: constructor
# contributor: Translated from TextMate Snippet
# name: constructor, destructor
# --
constructor Create${1:()};
destructor Destroy; override;$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: for
# contributor: Translated from TextMate Snippet
# name: for … end
# --
for ${1:i} := ${2:0} to ${3:max} do begin
$0
end;

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: if
# contributor: Translated from TextMate Snippet
# name: if … end
# --
if ${1} then begin
$0
end;

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: prop
# contributor: Translated from TextMate Snippet
# name: property
# --
property ${1:PropertyName}: ${2:WideString} read ${3:F}${1} write ${4:F}${1};$0

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# key: try
# contributor: Translated from TextMate Snippet
# name: try … finally
# --
try
$0
finally
$1
end;

View File

@@ -0,0 +1,17 @@
# -*- mode: snippet -*-
# key: unit
# contributor: Translated from TextMate Snippet
# name: unit … implementation … end
# --
unit ${1:unit_name};
interface
uses
SysUtils${2:, Classes};
implementation
$0
end.