0
0
mirror of https://github.com/vim/vim.git synced 2025-07-04 23:07:33 -04:00
vim/runtime/plugin/gzip.vim

53 lines
2.4 KiB
VimL
Raw Normal View History

2004-06-13 20:20:40 +00:00
" Vim plugin for editing compressed files.
" Maintainer: Bram Moolenaar <Bram@vim.org>
2016-10-30 21:55:26 +01:00
" Last Change: 2016 Oct 30
2004-06-13 20:20:40 +00:00
" Exit quickly when:
" - this plugin was already loaded
" - when 'compatible' is set
" - some autocommands are already taking care of compressed files
if exists("loaded_gzip") || &cp || exists("#BufReadPre#*.gz")
finish
endif
let loaded_gzip = 1
augroup gzip
" Remove all gzip autocommands
au!
2005-07-27 21:13:01 +00:00
" Enable editing of gzipped files.
" The functions are defined in autoload/gzip.vim.
"
" Set binary mode before reading the file.
" Use "gzip -d", gunzip isn't always available.
2016-11-17 14:50:09 +01:00
autocmd BufReadPre,FileReadPre *.gz,*.bz2,*.Z,*.lzma,*.xz,*.lz,*.zst setlocal bin
2005-07-27 21:13:01 +00:00
autocmd BufReadPost,FileReadPost *.gz call gzip#read("gzip -dn")
autocmd BufReadPost,FileReadPost *.bz2 call gzip#read("bzip2 -d")
autocmd BufReadPost,FileReadPost *.Z call gzip#read("uncompress")
2010-01-06 20:54:52 +01:00
autocmd BufReadPost,FileReadPost *.lzma call gzip#read("lzma -d")
autocmd BufReadPost,FileReadPost *.xz call gzip#read("xz -d")
2016-10-30 21:55:26 +01:00
autocmd BufReadPost,FileReadPost *.lz call gzip#read("lzip -d")
2016-11-17 14:50:09 +01:00
autocmd BufReadPost,FileReadPost *.zst call gzip#read("zstd -d --rm")
2005-07-27 21:13:01 +00:00
autocmd BufWritePost,FileWritePost *.gz call gzip#write("gzip")
autocmd BufWritePost,FileWritePost *.bz2 call gzip#write("bzip2")
autocmd BufWritePost,FileWritePost *.Z call gzip#write("compress -f")
2010-01-06 20:54:52 +01:00
autocmd BufWritePost,FileWritePost *.lzma call gzip#write("lzma -z")
autocmd BufWritePost,FileWritePost *.xz call gzip#write("xz -z")
2016-10-30 21:55:26 +01:00
autocmd BufWritePost,FileWritePost *.lz call gzip#write("lzip")
2016-11-17 14:50:09 +01:00
autocmd BufWritePost,FileWritePost *.zst call gzip#write("zstd --rm")
2005-07-27 21:13:01 +00:00
autocmd FileAppendPre *.gz call gzip#appre("gzip -dn")
autocmd FileAppendPre *.bz2 call gzip#appre("bzip2 -d")
autocmd FileAppendPre *.Z call gzip#appre("uncompress")
2010-01-06 20:54:52 +01:00
autocmd FileAppendPre *.lzma call gzip#appre("lzma -d")
autocmd FileAppendPre *.xz call gzip#appre("xz -d")
2016-10-30 21:55:26 +01:00
autocmd FileAppendPre *.lz call gzip#appre("lzip -d")
2016-11-17 14:50:09 +01:00
autocmd FileAppendPre *.zst call gzip#appre("zstd -d --rm")
2005-07-27 21:13:01 +00:00
autocmd FileAppendPost *.gz call gzip#write("gzip")
autocmd FileAppendPost *.bz2 call gzip#write("bzip2")
autocmd FileAppendPost *.Z call gzip#write("compress -f")
2010-01-06 20:54:52 +01:00
autocmd FileAppendPost *.lzma call gzip#write("lzma -z")
autocmd FileAppendPost *.xz call gzip#write("xz -z")
2016-10-30 21:55:26 +01:00
autocmd FileAppendPost *.lz call gzip#write("lzip")
2016-11-17 14:50:09 +01:00
autocmd FileAppendPost *.zst call gzip#write("zstd --rm")
2004-06-13 20:20:40 +00:00
augroup END