From 48e6147e64b819d2a4130697bb348dcd368a4391 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Sat, 1 Mar 2025 11:37:28 +0100 Subject: vim-patch:56957ed: runtime(misc): add support for bzip3 to tar, vimball and gzip plugins fixes: vim/vim#16751 closes: vim/vim#16755 https://github.com/vim/vim/commit/56957ed4109fb0c37922c6c37d5926cfe0a3313b Co-authored-by: Jim Zhou --- runtime/plugin/tarPlugin.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/plugin/tarPlugin.vim') diff --git a/runtime/plugin/tarPlugin.vim b/runtime/plugin/tarPlugin.vim index 64266fd3f2..a337c91214 100644 --- a/runtime/plugin/tarPlugin.vim +++ b/runtime/plugin/tarPlugin.vim @@ -38,6 +38,7 @@ augroup tar au BufReadCmd *.lrp call tar#Browse(expand("")) au BufReadCmd *.tar call tar#Browse(expand("")) au BufReadCmd *.tar.bz2 call tar#Browse(expand("")) + au BufReadCmd *.tar.bz3 call tar#Browse(expand("")) au BufReadCmd *.tar.gz call tar#Browse(expand("")) au BufReadCmd *.tar.lz4 call tar#Browse(expand("")) au BufReadCmd *.tar.lzma call tar#Browse(expand("")) -- cgit