如何使用 Vim 压缩文件?
我知道 Vim 支持编辑压缩文件(gzip、bzip2 等)。但是如何压缩并写入 Vim 中加载的文本文件呢?我确信有某种方法可以做到这一点,但我似乎无法弄清楚。
I know that Vim supports editing of compressed files (gzip, bzip2, etc.). But how can I compress and write a text file which is loaded in Vim? I'm sure there's some way to do it, but I can't seem to figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
自动命令
来完成此操作。我建议阅读
:h gzip-example
。You can do it with
autocommands
.I'd recommend reading
:h gzip-example
.