Files
linux-config/c.snippets
Kevin Mok 872f0e5e0e Generic for, alias and multi-line equation
For C, bash and LaTeX respectively.
2018-01-31 00:03:56 -05:00

6 lines
85 B
Plaintext

snippet forg "Generic for"
for (int i = 0; i < ${1:count}; i++) {
${2}
}
endsnippet