From a747812b5b9076a4576913afaf3521a180236d6b Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Mon, 10 Jun 2024 10:36:01 +0200 Subject: [PATCH] Add support for CodeLite links (#656) --- src/DebugBar/DataFormatter/HasXdebugLinks.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DebugBar/DataFormatter/HasXdebugLinks.php b/src/DebugBar/DataFormatter/HasXdebugLinks.php index 0d37e4f..ea4f734 100644 --- a/src/DebugBar/DataFormatter/HasXdebugLinks.php +++ b/src/DebugBar/DataFormatter/HasXdebugLinks.php @@ -108,6 +108,7 @@ trait HasXdebugLinks 'textmate' => 'txmt://open?url=file://%f&line=%l', 'emacs' => 'emacs://open?url=file://%f&line=%l', 'macvim' => 'mvim://open/?url=file://%f&line=%l', + 'codelite' => 'codelite://open?file=%f&line=%l', 'phpstorm' => 'phpstorm://open?file=%f&line=%l', 'phpstorm-remote' => 'javascript:(()=>{let r=new XMLHttpRequest;' . 'r.open(\'get\',\'http://localhost:63342/api/file/%f:%l\');r.send();})()',