| /vim-8.2.3635/src/testdir/ |
| H A D | test_fnamemodify.vim | 26 call assert_equal('abc.fb2.tar', fnamemodify('abc.fb2.tar.gz', ':r')) 27 call assert_equal('abc.fb2', fnamemodify('abc.fb2.tar.gz', ':r:r')) 28 call assert_equal('abc', fnamemodify('abc.fb2.tar.gz', ':r:r:r')) 29 …call assert_equal('testdir/abc.fb2', substitute(fnamemodify('abc.fb2.tar.gz', ':p:r:r'), '.*\(test… 30 call assert_equal('gz', fnamemodify('abc.fb2.tar.gz', ':e')) 31 call assert_equal('tar.gz', fnamemodify('abc.fb2.tar.gz', ':e:e')) 32 call assert_equal('fb2.tar.gz', fnamemodify('abc.fb2.tar.gz', ':e:e:e')) 33 call assert_equal('fb2.tar.gz', fnamemodify('abc.fb2.tar.gz', ':e:e:e:e')) 34 call assert_equal('tar', fnamemodify('abc.fb2.tar.gz', ':e:e:r'))
|
| H A D | test_autocmd.vim | 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 2286 au BufReadPost *.gz exe '!gzip ' . shellescape(expand("<afile>:r")) 2289 e! Xtestfile.gz " Edit compressed file 2353 au FileReadPost *.gz '[,']s/l/L/ 2357 0r Xtestfile.gz " Read compressed file 2379 \ ], readfile('Xtestfile.gz')) [all …]
|
| /vim-8.2.3635/runtime/plugin/ |
| H A D | gzip.vim | 9 if exists("loaded_gzip") || &cp || exists("#BufReadPre#*.gz") 23 autocmd BufReadPre,FileReadPre *.gz,*.bz2,*.Z,*.lzma,*.xz,*.lz,*.zst,*.br,*.lzo setlocal bin 24 autocmd BufReadPost,FileReadPost *.gz call gzip#read("gzip -dn") 33 autocmd BufWritePost,FileWritePost *.gz call gzip#write("gzip") 42 autocmd FileAppendPre *.gz call gzip#appre("gzip -dn") 51 autocmd FileAppendPost *.gz call gzip#write("gzip")
|
| H A D | vimballPlugin.vim | 31 …au BufEnter *.vba,*.vba.gz,*.vba.bz2,*.vba.zip,*.vba.xz setlocal bt=nofile fmr=[[[,]]] fdm=marker… 32 …au SourceCmd *.vba.gz,*.vba.bz2,*.vba.zip,*.vba.xz let s:origfile=expand("%")|if expand("%")!=ex… 34 …au BufEnter *.vmb,*.vmb.gz,*.vmb.bz2,*.vmb.zip,*.vmb.xz setlocal bt=nofile fmr=[[[,]]] fdm=marker… 35 …au SourceCmd *.vmb.gz,*.vmb.bz2,*.vmb.zip,*.vmb.xz let s:origfile=expand("%")|if expand("%")!=ex…
|
| H A D | tarPlugin.vim | 37 au BufReadCmd *.tar.gz call tar#Browse(expand("<amatch>"))
|
| /vim-8.2.3635/runtime/spell/eu/ |
| H A D | main.aap | 42 :attr {fetch = http://xuxen.eus/static/hunspell/xuxen_5.1_hunspell.tar.gz} xuxen_5.1_hunspell.tar.gz 48 :fetch xuxen_5.1_hunspell.tar.gz 49 :sys tar xf xuxen_5.1_hunspell.tar.gz 69 :delete {f} xuxen_5.1_hunspell.tar.gz
|
| /vim-8.2.3635/READMEdir/ |
| H A D | README_vms.txt | 12 vim-X.X-rt.tar.gz runtime files 13 vim-X.X-src.tar.gz source files 14 vim-X.X-extra.tar.gz extra source files
|
| H A D | README_src.txt | 7 archive (vim-8.2-rt.tar.gz). To be able to run Vim you MUST get the runtime
|
| H A D | README_os390.txt | 13 the tar file is initially compressed with gzip (tar.gz) or bzip2 (tar.bz2)
|
| /vim-8.2.3635/ |
| H A D | Makefile | 344 -rm -f dist/vim$(VERSION)rt.tar.gz 364 mv dist/vim$(VERSION)rt.tar.gz dist/vim$(VERSION)rt.tgz 368 -rm -f dist/vim$(VERSION)bin.tar.gz 383 mv dist/vim$(VERSION)bin.tar.gz dist/vim$(VERSION)bin.tgz 387 -rm -f dist/vim$(VERSION)src.tar.gz 402 mv dist/vim$(VERSION)src.tar.gz dist/vim$(VERSION)src.tgz
|
| H A D | README.md | 3 …ps://fossies.org/linux/test/vim-master.tar.gz/codespell.svg)](https://fossies.org/linux/test/vim-m…
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | tar.vim | 162 if tarfile =~# '\.\(gz\)$' 300 elseif fname =~ '\.t\=gz$' && executable("zcat") 315 if fname =~ '\.bz2$\|\.gz$\|\.lzma$\|\.xz$\|\.zip$\|\.Z$' 328 elseif tarfile =~# '\.\(gz\)$' 448 elseif tarfile =~# '\.gz' 450 let tarfile = substitute(tarfile,'\.gz','','e') 530 " call Decho("rename(".tarfile.".gz,".substitute(tarfile,'\.tar$','.tgz','e').")") 531 call rename(tarfile.".gz",substitute(tarfile,'\.tar$','.tgz','e')) 638 elseif filereadable(tarbase.".tar.gz") 641 call system(extractcmd." ".shellescape(tarbase).".tar.gz ".shellescape(fname)) [all …]
|
| H A D | vimball.vim | 492 if expand("%") =~ '.*\.gz' && executable("gunzip") 493 " handle *.gz with gunzip 498 let fname= substitute(a:fname,'\.gz$','','') 502 elseif expand("%") =~ '.*\.gz' && executable("gzip") 503 " handle *.gz with gzip -d 508 let fname= substitute(a:fname,'\.gz$','','')
|
| H A D | gzip.vim | 86 " write the just read lines to a temp file "'[,']w tmp.gz" 88 " uncompress the temp file: call system("gzip -dn tmp.gz")
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | pi_gzip.txt | 24 *.gz gzip 34 make a file like "foo.c.gz" get the "c" filetype.
|
| H A D | pi_getscript.txt | 62 1. if compressed: gunzip getscript.vba.gz 196 40 3 DrawIt.tar.gz 285 ---.tar.gz : decompressed & untarred in .vim/ directory 286 ---.vba.gz : decompressed in .vim/ directory, then vimball handles it 287 ---.vim.gz : decompressed & moved into .vim/plugin directory 375 else if the downloaded file ends with ".gz"
|
| H A D | autocmd.txt | 1511 : au BufEnter *.gz %!gunzip 1633 : autocmd BufReadPre,FileReadPre *.gz set bin 1634 : autocmd BufReadPost,FileReadPost *.gz '[,']!gunzip 1635 : autocmd BufReadPost,FileReadPost *.gz set nobin 1640 : autocmd FileAppendPre *.gz !gunzip <afile> 1641 : autocmd FileAppendPre *.gz !mv <afile>:r <afile> 1642 : autocmd FileAppendPost *.gz !mv <afile> <afile>:r 1643 : autocmd FileAppendPost *.gz !gzip <afile>:r 1692 :autocmd FileWritePre *.gz set bin|'[,']!gzip 1693 :autocmd FileWritePost *.gz undo|set nobin [all …]
|
| H A D | tips.txt | 397 (2) Edit "doc/tags" and change the ".txt" to ".txt.gz": > 398 :%s=\(\t.*\.txt\)\t=\1.gz\t= 401 set helpfile={dirname}/help.txt.gz
|
| H A D | pi_tar.txt | 141 May 30, 2008 * allows one to view *.gz and *.bz2 files that
|
| /vim-8.2.3635/src/ |
| H A D | INSTALLvms.txt | 37 unix/vim-X.X-src.tar.gz 38 unix/vim-X.X-rt.tar.gz 39 extra/vim-X.X-extra.tar.gz 63 Current OpenVMS source code as .zip or .tar.gz file is possible to download
|
| /vim-8.2.3635/ci/ |
| H A D | build-snd-dummy.sh | 5 LINUX_ARCHIVE_FILE=v${LINUX_VERSION}.tar.gz
|
| /vim-8.2.3635/runtime/spell/am/ |
| H A D | main.aap | 24 TARNAME = am-demo.tar.gz
|
| /vim-8.2.3635/nsis/ |
| H A D | README.txt | 38 http://www.mossbayeng.com/~ron/vim/diffutils.tar.gz
|
| /vim-8.2.3635/src/libvterm/ |
| H A D | Makefile | 132 TARBALL=$(DISTDIR).tar.gz
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | netrw.vim | 62 syn match netrwCompress "\(\S\+ \)*\S\+\.\%(gz\|bz2\|Z\|zip\)\>" contains=netrwTreeBar,@NoSpell
|