I tried to create my own user snippet for pascal in VS Code. It worked fine and the multi-line descriptions I wrote were displayed correctly. But after a while, like a month, the descriptions with multiple lines aren't working anymore. The problem may be the code for the multi-line descriptions because descriptions with only one row still works and displays correct. However the multi-line descriptions aren't displayed correctly and get replaced with a {0} instead of the description I wrote.
This is how the multi-line descriptions are displayed:
Instead of my description there is a {0} and I don't know why because it worked fine a month ago.
This is the code I used:
{
"SetValue":{
"prefix": "SetValue",
"body": "SetValue(${1:val:Integer}, ${2:id:Integer});",
"description": [
"Parameter:\r",
" val...desc\r",
" id....desc\r",
"\r",
"result:\r",
" 0 : false desc\r",
" 1 : true desc\r"
]
}
}
I hope I have expressed myself understandably and you may can help me with this problem. Thanks for your attention!

