Reputation: 8064
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?
Upvotes: 0
Views: 76