Hello, Is it possible to create a project based on a remote directory (on an ftp server) in VIM, using the Project plugin?
+2
A:
It's not true that vim doesn't have internal capabilities to open remote files. The first poster was correct, netrw is built into later versions of vim and it's awesome. I use it all the time to edit pages on website via ftp and sometimes over ssh.
Try:
I seem to remember creating a .netrc file so that I didn't have to type in my user/pass all the time.
man ftp (and search for .netrc assuming you're using vim on unix and not windows)
Benj
2009-10-20 14:33:15
When I did this alot I tended to add a shortcut key in my .vimrc file so that I wasn't always typing the full edit line in.nmap \b :e ftp://user@machine/path
Benj
2009-10-20 14:36:39
Wow, I don't know how I never found that in the documentation. I guess I just skimmed over the "standard plugins" section. Thanks for correcting me. (I would still suggest mounting or distributed version control for anything substantial, though.)
Jefromi
2009-10-23 20:21:29