如何使用 Vim 插件 VCSCommand 在目录上 diff/commit/etc ? (或者...什么是 VIm“目录缓冲区”?)
(我是 VIM-n00b)
根据 VCSCommand 文档,如果您当前位于“目录缓冲区”中,则命令将对目录进行操作。不过,我似乎找不到任何其他有关打开“目录缓冲区”的参考。
我(可能非常愚蠢)错过了什么?
(I am a VIM-n00b)
According to the VCSCommand docs, the commands will operate on a directory if you are currently in a "directory buffer". I can't seem to find any other references to opening a "directory buffer" though.
What am I (probably very stupidly) missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来它是带有
filetype=netrw
的缓冲区:如果你在 vim 中打开一个目录(例如,尝试vim .
),它将使用netrw
> 随官方包一起发布的插件。Looks like it is buffer with
filetype=netrw
: if you open a directory in vim (for example, tryvim .
), it will usenetrw
plugin which is distributed with the official package.