comparison runtime/plugin/tarPlugin.vim @ 2426:e52d87a2bb3e vim73

More runtime file updates.
author Bram Moolenaar <bram@vim.org>
date Wed, 28 Jul 2010 18:17:41 +0200
parents 7bc41231fbc7
children 31e51111bd14
comparison
equal deleted inserted replaced
2425:b5ee68272ae5 2426:e52d87a2bb3e
12 " --------------------------------------------------------------------- 12 " ---------------------------------------------------------------------
13 " Load Once: {{{1 13 " Load Once: {{{1
14 if &cp || exists("g:loaded_tarPlugin") 14 if &cp || exists("g:loaded_tarPlugin")
15 finish 15 finish
16 endif 16 endif
17 let g:loaded_tarPlugin = "v24" 17 let g:loaded_tarPlugin = "v25"
18 let s:keepcpo = &cpo 18 let s:keepcpo = &cpo
19 set cpo&vim 19 set cpo&vim
20 20
21 " --------------------------------------------------------------------- 21 " ---------------------------------------------------------------------
22 " Public Interface: {{{1 22 " Public Interface: {{{1
39 au BufReadCmd *.lrp call tar#Browse(expand("<amatch>")) 39 au BufReadCmd *.lrp call tar#Browse(expand("<amatch>"))
40 au BufReadCmd *.tar.bz2 call tar#Browse(expand("<amatch>")) 40 au BufReadCmd *.tar.bz2 call tar#Browse(expand("<amatch>"))
41 au BufReadCmd *.tar.Z call tar#Browse(expand("<amatch>")) 41 au BufReadCmd *.tar.Z call tar#Browse(expand("<amatch>"))
42 au BufReadCmd *.tgz call tar#Browse(expand("<amatch>")) 42 au BufReadCmd *.tgz call tar#Browse(expand("<amatch>"))
43 au BufReadCmd *.tar.lzma call tar#Browse(expand("<amatch>")) 43 au BufReadCmd *.tar.lzma call tar#Browse(expand("<amatch>"))
44 au BufReadCmd *.tar.xz call tar#Browse(expand("<amatch>"))
45 au BufReadCmd *.txz call tar#Browse(expand("<amatch>"))
44 augroup END 46 augroup END
45 com! -nargs=? -complete=file Vimuntar call tar#Vimuntar(<q-args>) 47 com! -nargs=? -complete=file Vimuntar call tar#Vimuntar(<q-args>)
46 48
47 " --------------------------------------------------------------------- 49 " ---------------------------------------------------------------------
48 " Restoration And Modelines: {{{1 50 " Restoration And Modelines: {{{1