VIM 可以自动解压不同文件扩展名的 gzip 文件吗?
当我打开 .gz
文件时,Vim 会自动展开它们,这很棒。但是,它不会以相同的方式识别.GZ
(大写)。不幸的是,由于各种原因,我无法更改正在使用的文件的文件扩展名。有没有一种相对简单的方法来注册VIM,使.GZ
与.gz
文件相同?
Vim automatically expands .gz
files when I open them up, which is great. However, it doesn't reccognize .GZ
(upper case) in the same way. Unfortunately I cannot change the file extensions of the files I'm working with for various reasons. Is there a realatively simple way to register with VIM that .GZ
are the same as .gz
files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其放入您的 .vimrc 中:
如果您想知道已经为 gz 文件激活了哪些自动命令,您可以这样做:
这表明与 gzip 相关的自动命令位于 gzip 组中。然后
:au gzip
给出一个更紧凑的列表。参考:
原始的 autocmd 位于 vim 运行时的 plugin/gzip.vim 中。您可以使用
:verbose au gzip
来判断Put this into your .vimrc :
If you want to know what autocmds were already activated for gz files you could have done:
This shows that gzip-related autocmds are in the gzip group. Then
:au gzip
gives a more compact list.Reference:
Original autocmds are in plugin/gzip.vim in your vim runtime. You can tell that with
:verbose au gzip