I've been using EVIL with Emacs 24.3 for a few weeks now, and I wish I could get it to tab complete case-insensitively in the minibuffer when using the :ed command.
I looked into it, and :ed is mapped to 'evil-edit
, a function that essentially calls Emacs's 'find-file
function with a 'file' argument if said argument is present. Otherwise, it reloads the current buffer.
I did a little reading into 'find-file
as well, but I'm not having any luck figuring out why it won't be case-insensitive. The 'read-file-name-completion-ignore-case'
variable is non-nil, so it's not that.
Any ideas?