Ido completion does not find all options

77 views Asked by At

I'm trying to use ido mode in Emacs 24.5.1 to find files recursively in subdirs. This is my config:

(require 'ido)
(ido-mode)
(setq ido-everywhere t)
(setq ido-enable-flex-matching t)
(setq ido-case-fold t)
(setq ido-create-new-buffer 'always)

When I C-x C-f to invoke ido-find-file and type in "paym", I get the following 4 matches: Payment/ | PaymentsInteractorTests.swift | PaymentsRepository.swift | StoreKitPaymentRepositoryTests.swift

However there's also a file called PaymentsInteractor.swift in the project, which ido does not find.

What am I doing wrong? Is there a way how to make ido search better?

0

There are 0 answers