This commit is contained in:
Chris
2025-04-24 11:59:36 +01:00
parent 62b3b156fa
commit ca3a910401
9 changed files with 108 additions and 25 deletions

17
lua/snippets/php.json Normal file
View File

@@ -0,0 +1,17 @@
{
"Create doc block": {
"prefix": "/**",
"body": [
"/**",
" * $0",
" */"
]
},
"Dump function": {
"prefix": "du",
"body": [
"dump($0);"
],
"description": "Dump variable"
}
}