Can i archive selected files in vifm?
For example, you can define zip command in your vifmrc file (the check is to do nothing if you forget to specify name):
zip
vifmrc
command! zip if [ -n "%a" ]; then \ zip -r '%a.zip' %f; \ fi
Then do the selection and run
:zip archive-name