nvim/snippets/go.json

15 lines
193 B
JSON
Raw Normal View History

2024-01-14 23:20:45 +08:00
{
2024-01-22 20:23:18 +08:00
"class": {
"prefix": "class",
"body": "type $1 struct{$2}\n$0"
2024-01-26 15:32:49 +08:00
},
2024-01-27 12:31:15 +08:00
"errnil": {
"prefix": "errnil",
2024-01-26 15:32:49 +08:00
"body": [
"if err != nil {",
2024-01-27 12:31:15 +08:00
" $1",
2024-01-26 15:32:49 +08:00
"}"
]
2024-01-22 20:23:18 +08:00
}
2024-01-14 23:20:45 +08:00
}