Skip to content

Commit 81b130f

Browse files
author
Sébastien Nikolaou
authored
Add editor support for vscode remote links (#1268)
1 parent ccf109f commit 81b130f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

config/debugbar.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@
4949
|
5050
| Choose your preferred editor to use when clicking file name.
5151
|
52-
| Supported: "phpstorm", "vscode", "vscode-insiders", "vscodium", "textmate", "emacs",
52+
| Supported: "phpstorm", "vscode", "vscode-insiders", "vscode-remote",
53+
| "vscode-insiders-remote", "vscodium", "textmate", "emacs",
5354
| "sublime", "atom", "nova", "macvim", "idea", "netbeans",
5455
| "xdebug", "espresso"
5556
|

src/DataCollector/RouteCollector.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ class RouteCollector extends DataCollector implements Renderable
3939
'idea' => 'idea://open?file=%file&line=%line',
4040
'vscode' => 'vscode://file/%file:%line',
4141
'vscode-insiders' => 'vscode-insiders://file/%file:%line',
42+
'vscode-remote' => 'vscode://vscode-remote/%file:%line',
43+
'vscode-insiders-remote' => 'vscode-insiders://vscode-remote/%file:%line',
4244
'vscodium' => 'vscodium://file/%file:%line',
4345
'nova' => 'nova://core/open/file?filename=%file&line=%line',
4446
'xdebug' => 'xdebug://%file@%line',

0 commit comments

Comments
 (0)