Hello!
I am using DDEV to develop a Laravel application. I using Dev containers over ssh to access the code and the database. I like to change the Laravel debugbar code to open this code in cursor. The code looks like this:
'cursor' => 'cursor://file/%file:%line',
It is working, but only local file.
The vscode equivalent looks lioke this (I hope)
'vscode-remote' => 'vscode://vscode-remote/%file:%line',
What is the correct url to open a file in remote in cursor?
Thanks.