xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 3f6d5be3c997ba3f64a7497e6da95443d6a48151

packer: fix formatting of unknown format error
A space was missing and better to add quotes to make it easier to see
where the format starts and ends.
Author: xaizek
Author date (UTC): 2024-03-11 17:34
Committer name: xaizek
Committer date (UTC): 2024-03-11 17:34
Parent(s): 4399e2e2b81c4ef21e05d3461b9192159586d2f5
Signing key: 99DC5E4DB05F6BE2
Tree: 2a3ae8bff348ad2124925f3ca7ce11449f431b58
File Lines added Lines deleted
data/plugins/packer/unpack.lua 1 1
File data/plugins/packer/unpack.lua changed (mode: 100644) (index 1c046a886..9e3419ca9)
... ... local function unpack_archive(archive, target, onexit) -- <<<
120 120 elseif cmp == "tzst" or cmp == "zst" then elseif cmp == "tzst" or cmp == "zst" then
121 121 cmd = string.format("tar --force-local -C %s -I 'zstd -d' -vxf %s", eoutdir, efpath) cmd = string.format("tar --force-local -C %s -I 'zstd -d' -vxf %s", eoutdir, efpath)
122 122 else else
123 vifm.sb.error("Error: unknown compression format"..cmp)
123 vifm.sb.error("Error: unknown compression format '"..cmp.."'")
124 124 return return
125 125 end end
126 126 elseif ext == 'zip' or ext == 'rar' or ext == '7z' or ext == 'lz4' then elseif ext == 'zip' or ext == 'rar' or ext == '7z' or ext == 'lz4' then
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master