aboutsummaryrefslogtreecommitdiff
path: root/runtime/plugin
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-17 23:59:17 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-02-17 23:59:17 -0500
commitb46a92f519591f1316b3e8b7d8a9cdeceab52029 (patch)
treee5cfc652a95f5e5d308b11b2732ba15afdbb1996 /runtime/plugin
parentd3c6f7449838ef30b8d3b71fa418cec207e3de71 (diff)
downloadrneovim-b46a92f519591f1316b3e8b7d8a9cdeceab52029.tar.gz
rneovim-b46a92f519591f1316b3e8b7d8a9cdeceab52029.tar.bz2
rneovim-b46a92f519591f1316b3e8b7d8a9cdeceab52029.zip
runtime/tar: 23515b4ef7580af8b9d3b964a558ab2007cacda5
Port tar files only in order to support '*.tar.zst' files. Close https://github.com/neovim/neovim/pull/13337
Diffstat (limited to 'runtime/plugin')
-rw-r--r--runtime/plugin/tarPlugin.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/plugin/tarPlugin.vim b/runtime/plugin/tarPlugin.vim
index 1fdd72c130..d55492a93e 100644
--- a/runtime/plugin/tarPlugin.vim
+++ b/runtime/plugin/tarPlugin.vim
@@ -44,6 +44,8 @@ augroup tar
au BufReadCmd *.tar.lzma call tar#Browse(expand("<amatch>"))
au BufReadCmd *.tar.xz call tar#Browse(expand("<amatch>"))
au BufReadCmd *.txz call tar#Browse(expand("<amatch>"))
+ au BufReadCmd *.tar.zst call tar#Browse(expand("<amatch>"))
+ au BufReadCmd *.tzs call tar#Browse(expand("<amatch>"))
augroup END
com! -nargs=? -complete=file Vimuntar call tar#Vimuntar(<q-args>)