blob: ee5b101126b8aaebd414c92ef07fcf546e491dd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# -*- mode: snippet -*-
# contributor: Alexander Sulfrian <alexander@sulfrian.net>
# name: procedure prototype
# key: proc
# condition: (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);
$0
|