如何让标准 Vim FTP 命令发挥作用?
当我在 Vim 中执行 vim ftp://[user@]machine/path
时,出现以下错误:E683: 文件名丢失或无效模式
。为什么 id Vim 将此命令视为搜索模式?
我在 MacVim 和 Terminal Vim 中遇到同样的错误。
When I do vim ftp://[user@]machine/path
in Vim I get this error: E683: File name missing or invalid pattern
. Why id Vim treating this command as a search pattern?
I'm getting the same error in MacVim and Terminal Vim.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常您想要启动 Vim,然后通过 ftp 编辑文件。使用 url 调用
vim
可能不起作用。您应该提供一个文件路径作为vim
的参数,这就是导致错误的原因。另外,错误说:
Vim 不会将其视为搜索模式。注意“或”。碰巧没有给出文件名。
尝试启动 vim 然后:
Usually you want to start Vim and then edit a file over ftp. Calling
vim
with a url may not work. You're supposed give a file path as argument tovim
and that's what's causing the error.Also, the error says:
Vim is not treating it as a search pattern. Notice the "or". It happens that no file name is given.
Try starting vim and then: