I was looking to select every files that match a regex like /^.*.R|^.*.py at a time...
/^.*.R|^.*.py
But I only can do n + t repetitively, or is there another way?
n
t
This should select both:
:select /^.*.pdf|^.*.sh/
Or simpler:
select {*.pdf,*.sh}