Skip to content

Instantly share code, notes, and snippets.

View ElDuderino420's full-sized avatar

Your Dudeness ElDuderino420

  • Under your floor boards
View GitHub Profile
@ElDuderino420
ElDuderino420 / pawn.json
Created August 11, 2017 22:37
SAMP Autocompletions for VS Code
{
"#if !defined … #define … #endif": {
"prefix": "def",
"body": "#if !defined ${1/([A-Za-z0-9_]+).*/$1/}\n\t#define ${1:SYMBOL} ${2:value}\n#endif$0"
},
"#include \"…\"": {
"prefix": "include",
"body": "include \"${1:}\"$0"
},