fzf-tab-completion
fzf-tab-completion copied to clipboard
Can we ignore case sensitivity when starting completion?
Is it possible to display completion candidates while ignoring the case of already entered characters at the start of completion? I would like to achieve behavior similar to setting set completion-ignore-case on in bash.
real behavior
$ ls
hoge1 hoge2 HOGE3
$ ls h<TAB>
> ls h
2/2 -----
hoge2/
hoge1/
want behavior
$ ls
hoge1 hoge2 HOGE3
$ ls h<TAB>
> ls h
2/2 -----
HOGE3/
hoge2/
hoge1/