yasnippet-snippets/snippets/julia-mode/for

10 lines
174 B
Plaintext
Raw Permalink Normal View History

2019-09-30 04:12:33 +02:00
# -*- mode: snippet -*-
2019-10-01 05:32:05 +02:00
# name: for ... ... end
2019-09-30 04:12:33 +02:00
# key: for
2019-10-01 05:32:05 +02:00
# contributor: hankail05
2019-09-30 04:12:33 +02:00
# --
2019-10-01 05:32:05 +02:00
for ${1:i} ${2:$$(yas-julia-iteration-keyword-choice)} ${3:1:n}
${4:body}
2019-09-30 04:12:33 +02:00
end
2019-10-01 05:32:05 +02:00
$0