Merge pull request #367 from phikal/master

Add go init snippet
This commit is contained in:
Andrea Crotti 2020-03-14 10:29:08 +00:00 committed by GitHub
commit 619342f4e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

7
snippets/go-mode/init Normal file
View File

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: func init()
# key: init
# --
func init() {
$0
}