vscode-rsync icon indicating copy to clipboard operation
vscode-rsync copied to clipboard

Workspaces config example is wrong

Open camrossi opened this issue 5 years ago • 0 comments

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/"
			}
		]
	
}

camrossi avatar Sep 03 '20 06:09 camrossi