summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-24 22:28:49 +0300
committerAndrew Dolgov <[email protected]>2021-02-24 22:28:49 +0300
commit922a6992153a95b0639253752a6125a45d4fd3ab (patch)
treeb54981847a72e3868582e0fe51d54a588099a91b /.vscode
parentc70fc6801259c22846824640382805678063eeb9 (diff)
reorder debug targets
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json23
1 files 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
@@ -2,6 +2,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",
"type": "chrome",
@@ -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
+ }
+ ]
+}