unix-conf/.emacs.d/elpa/yasnippet-20160131.948/snippets/go-mode/forrange

8 lines
137 B
Plaintext
Raw Normal View History

2016-02-18 13:53:30 +00:00
# -*- mode: snippet -*-
# name: for range
# key: range
# contributor : @atotto
# --
for ${3:key}, ${2:value} := range ${1:target} {
$0
}