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