feat(yazi): new plugin: compress.yazi

compress files
This commit is contained in:
Sergio Laín 2024-08-04 13:26:26 +02:00
parent 9b2afcf727
commit acf72d2bfa
No known key found for this signature in database
GPG key ID: 8429B2EE312F8150
2 changed files with 5 additions and 0 deletions

View file

@ -6,6 +6,10 @@ prepend_keymap = [
{ on = [ { on = [
"<C-s>", "<C-s>",
], run = '''shell "$SHELL" --block --confirm''', desc = "Open shell here" }, ], run = '''shell "$SHELL" --block --confirm''', desc = "Open shell here" },
{ on = [
"c",
"a",
], run = "plugin compress", desc = "Archive selected files" },
] ]
append_keymap = [ append_keymap = [

View file

@ -3,6 +3,7 @@ deps = [
{ use = "yazi-rs/plugins#full-border", commit = "06e5fe1" }, { use = "yazi-rs/plugins#full-border", commit = "06e5fe1" },
{ use = "llanosrocas/yaziline", commit = "5886330" }, { use = "llanosrocas/yaziline", commit = "5886330" },
{ use = "Rolv-Apneseth/starship", commit = "0a141f6" }, { use = "Rolv-Apneseth/starship", commit = "0a141f6" },
{ use = "KKV9/compress", commit = "878b876" },
] ]
[flavor] [flavor]