Remove newline from main snippets (#451)

Revert commit 7a57697
This commit is contained in:
REmerald 2024-07-08 03:50:20 +00:00 committed by GitHub
parent 8c158510e9
commit 45a1b96e46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,8 +17,7 @@
"#include <stdlib.h>",
"",
"int main(int argc, char *argv[])",
"{",
"\t$0",
"{$0",
"\treturn EXIT_SUCCESS;",
"}"
],
@ -41,8 +40,7 @@
"prefix": "main",
"body": [
"int main(int argc, char *argv[])",
"{",
"\t$0",
"{$0",
"\treturn EXIT_SUCCESS;",
"}"
],
@ -50,7 +48,7 @@
},
"main(void) template": {
"prefix": "mainn",
"body": ["int main(void)", "{$0", "", "\treturn EXIT_SUCCESS;", "}"],
"body": ["int main(void)", "{$0", "\treturn EXIT_SUCCESS;", "}"],
"description": "No-args main() snippet"
},
"#include <...>": {