Damjan Cvetko

Results 297 comments of Damjan Cvetko

I've looked into this again. The vscode patterns that _linkifies_ the text is hardcoded: https://github.com/microsoft/vscode/blob/7dbf25d8427b59f519d04587e71a9d3dfb77224c/src/vs/workbench/contrib/debug/browser/linkDetector.ts#L37 However, as per this [comment](https://github.com/microsoft/vscode/issues/34026#issuecomment-451909166) output evnets can be equipped with a [source file and...

Also, I have a hard time reproducing this format: https://github.com/dlevs/vscode-regex-robin/issues/11#issue-2304934491 whats your php.ini for Xdebug like?

Add xdebug.client_host=... ip to your php.ini inside docker. You could also try xdebug.client_host=xdebug://gateway You need to tell Xdebug how to reach your IDE that is on a different network outside...

You need to tell php+xdebug how to connect to your ide. I don't know podman and so I dont know what kind of network isolation is happening there. Make sure...

Depends on how you have your environment setup. How would you run your script from command line? Let's say it's something like this: `docker exec mycontianer php /app/script.php` There are...

Ah sorry, I didn't pay enough attention, but also, this isn't related to this extension then. Can you figure out first which extension reports the error?

You are right, I'm very sorry, this is what I get for trying to answer tickets after a whole day on the road. Indeed the only extension that should be...

Please see first my response to your earlier issue https://github.com/xdebug/vscode-php-debug/issues/957#issuecomment-2043657805 Again first - what is the reason you want to run the script in a terminal and not via `launch.json`...