1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-16 21:08:34 +01:00

Fix Panic Nova link template (#694)

The URL scheme for Nova is incorrect; per Panic's recent post (https://social.panic.com/@panic/112689904216756608) this now uses the correct format. This is tested (briefly) with Laravel for confirmation.
This commit is contained in:
Watts Martin 2024-12-05 05:36:51 -05:00 committed by GitHub
parent 1b5dfcb0cd
commit 0815f47bdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,7 +120,7 @@ trait HasXdebugLinks
'vscode-remote' => 'vscode://vscode-remote/%f:%l',
'vscode-insiders-remote' => 'vscode-insiders://vscode-remote/%f:%l',
'vscodium' => 'vscodium://file/%f:%l',
'nova' => 'nova://core/open/file?filename=%f&line=%l',
'nova' => 'nova://open?path=%f&line=%l',
'xdebug' => 'xdebug://%f@%l',
'atom' => 'atom://core/open/file?filename=%f&line=%l',
'espresso' => 'x-espresso://open?filepath=%f&lines=%l',