vscode-rsync
vscode-rsync copied to clipboard
Workspaces config example is wrong
I just installed and configured this extension and it works great however I lost some time to get this working: https://github.com/thisboyiscrazy/vscode-rsync#workspaces
I think the correct syntax is without the "setting" just before sync-rsync.sites At least for me it works only without that:
{
"folders": [
{
"path": "/home/user/project/s1"
},
{
"path": "/home/user/projects/t2"
}
],
"sync-rsync.sites": [
{
"localPath": "/home/user/project/s1/",
"remotePath": "user@server:/var/www/s1/"
},
{
"localPath": "/home/user/projects/t2/",
"remotePath": "user@server:/var/www/s2/"
}
]
}