Files
nvim/lua/snippets/php.json

18 lines
293 B
JSON
Raw Normal View History

2025-04-24 11:59:36 +01:00
{
"Create doc block": {
"prefix": "/**",
"body": [
"/**",
" * $0",
" */"
]
},
"Dump function": {
"prefix": "du",
"body": [
"dump($0);"
],
"description": "Dump variable"
}
}