I'm trying to increase the value limit of an array in debug side bar.
By default, with an array with many elements, vscode only displays up to 32 values. I want to increase it to a certain number or unlimited.
This is my launch.json file:
{
"version": "0.2.0",
"configurations": [
{
"name": "REP-M Xdebug",
"type": "php",
"request": "launch",
"port": 9001,
"pathMappings": {
"/var/www": "${workspaceRoot}",
},
"xdebugSettings": {
"max_data": -1
}
}
]
}
But it seems that using max_data is incorrect.
So, how to increase it to a certain number or unlimited?