I have a problem authenticating to my ftp with vim. That because my 开发者_运维知识库username is an email address like this
424242@myhostingsite.com
So I should write
Nread fpt//424242@myhostingsite.com@myftpsite.com/
But I receive a warning and (obviously) It doesn't work. Is there a way to escape the first @ char?
Try:
Nread ftp://"424242@myhostingsite.com"@myftpsite.com/
Try:
Nread ftp://424242+myhostingsite.com@myftpsite.com/
Yeah. I've got exactly the same problem. It seems that there is one solution but not as comfortable. You can omit the user name and type it when vim ask for it.
If I find other solution i will post it here.
精彩评论