Damjan Cvetko
Damjan Cvetko
Here is an option: ``` { "name": "TEST", "type": "php", "request": "launch", "cwd": "${workspaceFolder}", "port": 0, "env": { "XDEBUG_MODE": "debug,develop", "XDEBUG_CONFIG": "client_port=${port}" } "runtimeExecutable": "bash", "runtimeArgs": [ "-c", "php -dxdebug.start_with_request=yes...
Hi @przepompownia ! I'm not sure where nvim logs the `Output` messages, but they are probably in the `dap` log as you described it. I do more vscode centric development,...
Hi! Yes, `expr` is not implemented in Xdebug. I talked to Derick about it a while ago and there is basically no way to achieve a _side effect free_ code...
Is it at all possible to have a debugger extension in vscode.dev? The docs say > If an extension wants to provide a debugger or terminal that also work in...
Hi! I see you have a very old Xdebug. Since Xdebug 3.0 I turn on extended_properties by default. You can enable them in `launch.json` like this: ``` "configurations": [ {...
Yeah, I know what it is. When VS Code sends the `variablesResponse` it is in UTF-8, as expected. However when this extension/Debug Adapter transforms the call to Xdebug it respects...
Hi. The vs_code_part_log.txt has only 3 lines in there, not much to go on. And the breakpoint ID is not in the other log either. And I cannot find an...
Hi. Thanks for the logs. They do show some strange things, but it would help if I could also see the file. The log shows: breakpoints on lines 65, 69....
Hi. I completely understand. Do you think you could try to create a simple file that also demonstrates such behavior? My question about your current source would be: if line...
Hi @marlboroman3. > I am having the same issue, suddenly I can't make the debugger stop on any breakpoints. One day it worked, the next, nothing. So, a bit weird....