blob: dc3859747222aad65e3f6fbd05417a2e43e866d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- mode: snippet -*-
# contributor: Alexander Sulfrian <alexander@sulfrian.net>
# name: function
# key: func
# condition: (not (delphi-in-class-definition))
# expand-env: ((yas/indent-line 'auto) (yas/wrap-around-region 'nil) (yas/also-auto-indent-first-line 't))
# --
function ${1:Name$(capitalize text)}($2): $3;
begin
$0
end;
|