Files
dotfiles/Doom/.doom.d/snippets/csharp-mode/foreach
dx c65cf688fc ~doom.d -> Doom/.doom.d
Proper naming, GNU/Stow style.
2020-05-05 02:59:45 +01:00

10 lines
159 B
Plaintext

# -*- mode: snippet -*-
# name: Foreach loop
# key: foreach
# condition: t
# --
foreach (${1:var} ${2:i} in ${3:collection})
{
$0
}