Skip to content

Commit 1b9862e

Browse files
committed
Improve extension appearence
1 parent 2f2916e commit 1b9862e

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
.gitignore
33
src/**/*
44
out/tests/**/*
5-
**/*.js.map
5+
**/*.js.map
6+
testproject/**/*

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ How to install
77
--------------
88

99
### Install extension:
10-
Press <kbd>F1</kbd>, type `ext install php-debug`.
10+
Press `F1`, type `ext install php-debug`.
1111

1212
### Install XDebug:
1313
[Download and install the XDebug extension](http://xdebug.org/download.php).
@@ -25,7 +25,7 @@ Now, everytime you do a request to a PHP file, XDebug will automatically try to
2525

2626
### Start debugging:
2727
In your project, go to the debugger and hit the little gear icon. Choose PHP. A new launch configuration will be created for you.
28-
Now, if you select this configuration and hit <kbd>F5</kbd>, VS Code will listen on port 9000 for incoming XDebug requests.
28+
Now, if you select this configuration and hit `F5`, VS Code will listen on port 9000 for incoming XDebug requests.
2929
Now, when you make a request to `localhost` with your webbrowser, XDebug will connect to VS Code and you can debug your PHP.
3030

3131
What is supported?
@@ -60,7 +60,7 @@ If you want to see the variables of the scope of the callee, click on it in the
6060
Contributing
6161
------------
6262
To hack on this adapter, clone the repository and open it in VS Code.
63-
You can debug it (run it in "server mode") by selecting the "Debug adapter" launch configuration and hitting <kbd>F5</kbd>.
63+
You can debug it (run it in "server mode") by selecting the "Debug adapter" launch configuration and hitting `F5`.
6464
Then, open a terminal inside the project, and open the included testproject with VS Code while specifying the current directory as `extensionDevelopmentPath`.
6565
As an example, for Powershell on Windows it could look like this:
6666

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "php-debug",
3-
"displayName": "PHP",
3+
"displayName": "PHP Debug",
44
"version": "1.0.0",
55
"publisher": "felixfbecker",
66
"description": "Debug support for PHP with XDebug",

testproject/.vscode/launch.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
{
22
"version": "0.2.0",
3-
"debugServer": 4711,
43
"configurations": [
54
{
65
"name": "Listen for XDebug",
76
"type": "php",
87
"request": "launch",
9-
"port": 9000,
10-
"stopOnEntry": false
8+
"port": 9000
119
}
1210
]
1311
}

0 commit comments

Comments
 (0)