Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ To make VS Code map the files on the server to the right files on your local mac
```json
// server -> local
"pathMappings": {
"/var/www/html": "{workspaceRoot}/www",
"/app": "{workspaceRoot}/app"
"/var/www/html": "${workspaceRoot}/www",
"/app": "${workspaceRoot}/app"
}
```
Please also note that setting any of the CLI debugging options will not work with remote host debugging, because the script is always launched locally. If you want to debug a CLI script on a remote host, you need to launch it manually from the command line.
Expand Down