Skip to content

Instantly share code, notes, and snippets.

@0xf4n9x
Created October 3, 2021 08:16
Show Gist options
  • Save 0xf4n9x/d54c370695b832d2d617114fe2ee5905 to your computer and use it in GitHub Desktop.
Save 0xf4n9x/d54c370695b832d2d617114fe2ee5905 to your computer and use it in GitHub Desktop.
Go Snippets in VS Code
{
"HEADER": {
"prefix": "header",
"body": [
"// @File : $TM_FILENAME",
"// @Time : $CURRENT_YEAR/$CURRENT_MONTH/$CURRENT_DATE $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND",
"// @Author : yourname",
"// @Version : 1.0",
"// @Contact : [email protected]",
"",
"",
"package main",
"import (\n\t\"fmt\"\n)",
"",
"func main() {\n\t$0\n}",
],
},
"println": {
"prefix": "fpl",
"body": "fmt.Println($0)",
"description": "println"
},
"printf": {
"prefix": "fpf",
"body": "fmt.Printf(\"$0\")",
"description": "printf"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment