From dc204b141ad6ee4dcda502776cc96d56af9a4fb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elie=20Fa=C3=ABs?= Date: Mon, 24 Jun 2024 11:59:17 +0200 Subject: [PATCH] Add editor into config app.php --- config/app.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/config/app.php b/config/app.php index d4e3180fa6fc..2e8143bcdd9f 100644 --- a/config/app.php +++ b/config/app.php @@ -187,4 +187,21 @@ // 'Example' => App\Facades\Example::class, ])->toArray(), + /* + |-------------------------------------------------------------------------- + | Editor + |-------------------------------------------------------------------------- + | + | The editor can be customized and will be used by the error page + | in debug mode or the dump() and dd()functions to link directly + | into your editor at the right file and line + | + | Supported editors: "atom", "emacs", "idea", "macvim", + | "netbeans", "nova", "phpstorm", "sublime", + | "textmate", "vscode", "vscode-insiders", + | "vscode-insiders-remote", "vscode-remote", "vscodium", "xdebug" + | + */ + 'editor' => env('APP_EDITOR'), + ];