Welcome to Vifm Q&A, where you can ask questions about Vifm usage. Registration is optional, anonymous posts are moderated. GitHub or Google logins are enabled.
0 votes
in vifm by

I was looking to select every files that match a regex like /^.*.R|^.*.py at a time...

But I only can do n + t repetitively, or is there another way?

1 Answer

0 votes
by
 
Best answer

This should select both:

:select /^.*.pdf|^.*.sh/

Or simpler:

select {*.pdf,*.sh} 
...