Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在被动模式下使用 FTP 客户端访问服务器,但如何为 Vim FTP 连接执行此操作?
运行ftp -p 12.34.56.67正常,但是在启动 vim 时我该怎么做(例如vim ftp://12.34.56.78/)?
ftp -p 12.34.56.67
vim ftp://12.34.56.78/
本文指出您需要将此行添加到您的.vimrc:
.vimrc
let g:netrw_ftp_cmd="ftp -p"
之后,根据这篇文章,你应该能够做到:
vim ftp://username@yourdomain.com//the/path/to/yourfile.php
这似乎是一个原生的 Vim 函数。
注意:对于非被动的 FTP 服务器,应关闭此选项。