Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
vim [2025/09/14 17:01] gevattervim [2025/11/04 12:17] (current) gevatter
Line 1: Line 1:
 +===== vimspector =====
 +
 +==== my php default config ====
 +
 +
 +<code>
 +{
 +  "configurations": {
 +    "Listen for XDebug": {
 +      "adapter": "vscode-php-debug",
 +      "filetypes": [ "php" ], // optional
 +      "configuration": {
 +        "name": "Listen for XDebug",
 +        "type": "php",
 +        "request": "launch",
 +        "port": 9003,
 +        "stopOnEntry": false,
 +        "pathMappings": {
 +          "/var/www/html": "${workspaceRoot}"
 +        }
 +      },
 +      "breakpoints": {
 +        "exception": {
 +          "Info": "N",
 +          "Notice": "N",
 +          "Warning": "N",
 +          "Exception": "N",
 +          "Error": "N",
 +          "*": "N"
 +        }
 +      }
 +    }
 +  }
 +}
 +</code>
 +
 ===== replace pattern after string ===== ===== replace pattern after string =====