unix-conf/.emacs.d/elpa/yasnippet-20160131.948/snippets/go-mode/forrange
2016-02-18 14:53:30 +01:00

8 lines
137 B
Plaintext

# -*- mode: snippet -*-
# name: for range
# key: range
# contributor : @atotto
# --
for ${3:key}, ${2:value} := range ${1:target} {
$0
}