Lines Matching refs:gz
2207 " Use a FileChangedShell autocommand to avoid a prompt for 'Xtestfile.gz'
2214 au FileWritePre *.gz '[,']!gzip
2215 au FileWritePost *.gz undo
2216 au FileReadPost *.gz '[,']!gzip -d
2232 1,9write! Xtestfile.gz
2237 0read Xtestfile.gz
2283 au BufReadPre *.gz exe '!gzip -d ' . shellescape(expand("<afile>"))
2284 au BufReadPre *.gz call rename(expand("<afile>:r"), expand("<afile>"))
2285 au BufReadPost *.gz call rename(expand("<afile>"), expand("<afile>:r"))
2286 au BufReadPost *.gz exe '!gzip ' . shellescape(expand("<afile>:r"))
2289 e! Xtestfile.gz " Edit compressed file
2351 au FileReadPre *.gz exe 'silent !gzip -d ' . shellescape(expand("<afile>"))
2352 au FileReadPre *.gz call rename(expand("<afile>:r"), expand("<afile>"))
2353 au FileReadPost *.gz '[,']s/l/L/
2357 0r Xtestfile.gz " Read compressed file
2379 \ ], readfile('Xtestfile.gz'))
2386 call delete('Xtestfile.gz')