summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+ }
+ ]
+}