one last thing, I would like to use xdg-open on a multiple files selection so I need a loop command. How do I adapt this already working command?
filextype {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*> xdg-open %f
should be something like
filextype {*.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm},<image/*> for element in %f; do xdg-open $element; done
but what vifm variable I have to use instead of "%f"? I tried to make it up from the vifm manual but I failed for now