From 33794481aea1a41001d514c33ca1f24f9e214d81 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Wed, 24 Feb 2021 17:52:43 +0100 Subject: [PATCH] Show example how to set xdebug.file_link_format --- reference/configuration/framework.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index 4515077d1d7..246726e820c 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -415,7 +415,13 @@ Since every developer uses a different IDE, the recommended way to enable this feature is to configure it on a system level. This can be done by setting the ``xdebug.file_link_format`` option in your ``php.ini`` configuration file. The format to use is the same as for the ``framework.ide`` option, but without the -need to escape the percent signs (``%``) by doubling them. +need to escape the percent signs (``%``) by doubling them:: + + // example for PhpStorm + xdebug.file_link_format="phpstorm://open?file=%f&line=%l" + + // example for Sublime + xdebug.file_link_format="subl://open?url=file://%f&line=%l" .. note::