如何让标准 Vim FTP 命令发挥作用?

发布于 2024-10-19 12:37:28 字数 166 浏览 4 评论 0原文

当我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白首有我共你 2024-10-26 12:37:28

通常您想要启动 Vim,然后通过 ftp 编辑文件。使用 url 调用 vim 可能不起作用。您应该提供一个文件路径作为 vim 的参数,这就是导致错误的原因。

另外,错误说:

文件名缺少模式无效

Vim 不会将其视为搜索模式。注意“或”。碰巧没有给出文件名。

尝试启动 vim 然后:

:e ftp://[user@]machine/path

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 to vim and that's what's causing the error.

Also, the error says:

File name missing or invalid pattern

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:

:e ftp://[user@]machine/path
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文