May I know to perform case insensitive search in fzf?
It looks like typing the pattern in lowercase will search files in case insensitive mode. Typing the pattern in uppercase will search files in case sensitive mode?
fzf -i to force case-insensitive search. Default is smart-case match where the search will be case-sensitive if you use at least one uppercase letter your pattern and case-insensitive otherwise. Take a look at fzf --help for all options you can give to FZF.
Most helpful comment
fzf -ito force case-insensitive search. Default is smart-case match where the search will be case-sensitive if you use at least one uppercase letter your pattern and case-insensitive otherwise. Take a look atfzf --helpfor all options you can give to FZF.