Skip to content

Commit 77c0f03

Browse files
committed
Small improvements to README
1 parent 353d37c commit 77c0f03

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Now, if you select the _Listen for XDebug_ configuration and hit `F5`, VS Code w
2929
When you make a request to `localhost` with your webbrowser or run a script from the command line, XDebug will connect to VS Code and you can debug your PHP.
3030

3131
For CLI scripts, you can set the same options the Node debugger supports: `program`, `runtimeExecutable`, `runtimeArgs`, `args`, `cwd`, `env` and `externalConsole` (see IntelliSense for descriptions).
32-
The dafault configuration includes one that runs the currently opened script as an example.
32+
The default configuration includes one that runs the currently opened script as an example.
3333

3434
What is supported?
3535
------------------
@@ -39,18 +39,13 @@ What is supported?
3939
- Step over, step in, step out
4040
- Break on entry
4141
- Breaking on uncaught exceptions and errors / warnings / notices
42-
- Multiple, parallel requests (still a bit buggy but I think these are bugs in VS Code)
42+
- Multiple, parallel requests (Still buggy, see [Microsoft/vscode#1703](https://github.com/Microsoft/vscode/issues/1703))
4343
- Stack traces, scope variables, superglobals, user defined constants
4444
- Arrays & objects (including classname, private and static properties)
4545
- Debug console
4646
- Watches
4747
- Run as CLI
4848

49-
What is not supported?
50-
----------------------
51-
- Breaking on _caught_ exceptions, this is not supported by XDebug and the setting is ignored
52-
- Attach requests, there is no such thing because the lifespan of PHP scripts is short
53-
5449
Remote Host Debugging
5550
---------------------
5651
If you want to debug a running application on a remote host, you have to set the `localSourceRoot` and `serverSourceRoot` settings in your launch.json.
@@ -79,11 +74,10 @@ Contributing
7974
------------
8075
To hack on this adapter, clone the repository and open it in VS Code.
8176
You can debug it (run it in "server mode") by selecting the "Debug adapter" launch configuration and hitting `F5`.
82-
Then, open a terminal inside the project, and open the included testproject with VS Code while specifying the current directory as `extensionDevelopmentPath`.
83-
As an example, for Powershell on Windows it could look like this:
77+
Then, open a terminal inside the project, and open the included testproject with VS Code while specifying the current directory as `extensionDevelopmentPath`:
8478

85-
```powershell
86-
PS C:\Users\felix\github\vscode-php-debug> code .\testproject\ --extensionDevelopmentPath=$pwd
79+
```sh
80+
code testproject --extensionDevelopmentPath=.
8781
```
8882

8983
VS Code will open an "Extension Development Host" with the debug adapter running. Open `.vscode/launch.json` and

0 commit comments

Comments
 (0)