summary refs log tree commit diff
path: root/.vim/UltiSnips/go.snippets
blob: 9233be0a8bcb656c42e60b01f7b0f810d4c61e07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
snippet main "func main()"
func main() {
	${0}
}
endsnippet

snippet 'if err' "if err != nil {}"
if err != nil {
	$1
}
$0
endsnippet