summaryrefslogtreecommitdiffstats
path: root/snippets/delphi-mode/for ... end.yasnippet
blob: 5353d53693aea64d3e34cc0827e1618acd8f2ac0 (plain) (blame)
1
2
3
4
5
6
7
8
9
# -*- mode: snippet -*-
# contributor: Alexander Sulfrian <alexander@sulfrian.net>
# name: for ... end
# key: for
# --
for ${1:I} := ${2:0} to ${3:max} do
begin
$0
end;