The tar.vim plugin allows vim to read and manipulate zstd archives,
but it had a bug that caused extraction attempts to fail. Specifically,
if the archive has a .tar.zst or .tzst extension, then the code was
generating invalid extraction commands that looked like this:
tar --zstdpxf foo.tar.zst foo
When they should be like this:
tar --zstd -pxf foo.tar.zst foo
This patch changes the flag manipulation logic so that --zstd isn't glued to pxf.
https://github.com/vim/vim/pull/19930
(2 files)
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
@7188ce06 pushed 1 commit.
—
View it on GitHub or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
@7188ce06 pushed 2 commits.
You are receiving this because you are subscribed to this thread.![]()
@7188ce06 pushed 2 commits.
You are receiving this because you are subscribed to this thread.![]()
@chrisbra Do you have any comments on this?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()