Hi, I've been using VIFM for some time now and I've found the programm so useful and efficient that I'd like to do some seminars or put some videos on YouTube to make it more widely available.
I downloaded the sources for version 13 from https://vifm.info/downloads.shtml
then I made
sudo apt-get install libncursesw5-dev
after having decompressed the sources I went to the vifm-0.13 folder where the INSTALL file can be found.
There I opened a terminal and did ./configure then make and finally make install and voila the program was compiled.
To open the program I went to the src folder and opened a terminal, after typing ./vifm the program was launched... I had to press ctrl-c to clear a small error which must be due to the PATH.
My question is as follows:
is it possible to use the :find function in VIFM - to search for files or directories - in upper or lower case - as in a Linux terminal ?
Here's an example of how to find all files containing the word width - case insensitive
find . -type f -iname "*width*"
result:

may I change something in ~/.config/vifm/vifmrc
thx