I'm on Win 10 and want to get rid of the Windows-Explorer and use mostly my keyboard with vifm. But I have problems assigning a file extension to a specific app. Everything I want to open is opened with the built-in vim, instead of my external Apps.
Here is an Example from my config:
" Pdf
filextype *.pdf
\ {View in AR}
\ C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRd32.exe %f
I have two Questions right now: - Is there really no 'Open-With'-function in vifm? Can't believe.... - How do I correctly assign the file types in my win-environment?
Thanks 4 your support!!
There are two things that you need to fix with the command:
%"finstead of%f.This will give you:
Which should work.
Depends on what you mean. There is
:filecommand, which will display list of registered file associations. If you just want to go with those registered in Windows, then use catch-all associationfiletype * start. If you're talking about "Open with" menu like in Explorer, then no, such querying of registered associations is not performed.