find-file-in-repository
find-file-in-repository copied to clipboard
Enhancement: Ignore case by default
Would be great to show results regardless of upper/lower casing, for easier typing!
Workaround example with use-package:
(setq read-file-name-completion-ignore-case t)
(ido-mode)
(use-package find-file-in-repository
:bind ("C-x f" . find-file-in-repository))
@mcandre Yes, this sounds like a useful change -- if you'd like to turn this into a PR, I'd be happy to merge it in
``` **
Workaround example with use-package:
(setq read-file-name-completion-ignore-case t) (ido-mode)
(use-package find-file-in-repository :bind ("C-x f" . find-file-in-repository))