dotfiles/.emacs.d/snippets/go-mode/forrange

8 lines
137 B
Plaintext
Raw Normal View History

2017-12-21 17:29:29 +01:00
# -*- mode: snippet -*-
# name: for range
# key: range
# contributor : @atotto
# --
for ${3:key}, ${2:value} := range ${1:target} {
$0
}