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 want to select file wich match to have some word like "certif" and not be a "pdf", but when I tried to do /^\(certif\)\&\(\(.*pdf.*\)\@!.\)*$ dont work.

I believe is because don't deal with syntax like \(whatever\)

1 Answer

0 votes
by
 
Best answer

You can use this

:select /certif/!{*.pdf}

If by selection you mean searching, then you can do ]s or [s afterwards. At the moment / search doesn't support expressions as above.

...