From 922a6992153a95b0639253752a6125a45d4fd3ab Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 24 Feb 2021 22:28:49 +0300 Subject: [PATCH] reorder debug targets --- .vscode/launch.json | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0e10b4b23..b3911320d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,15 @@ { "version": "0.2.0", "configurations": [ + { + "name": "Listen for XDebug", + "type": "php", + "request": "launch", + "pathMappings": { + "/var/www/html/tt-rss": "${workspaceRoot}", + }, + "port": 9000 + }, { "name": "Launch Chrome", "request": "launch", @@ -10,14 +19,6 @@ }, "urlFilter": "*/tt-rss/*", "runtimeExecutable": "chrome.exe", - }, - { - "name": "Listen for XDebug", - "type": "php", - "request": "launch", - "pathMappings": { - "/var/www/html/tt-rss": "${workspaceRoot}", - }, - "port": 9000 - }] -} \ No newline at end of file + } + ] +}