On Mon, Jan 14, 2019 at 4:43 PM João Távora wrote: > > Hi maintainers, > > I'm using substring completion, icomplete-mode and C-x C-f. Navigating > deeper in directories using successive C-M-i's sometimes fails: > > Emacs -Q > M-: (add-to-list 'completion-styles 'substring) > M-x icomplete-mode > C-x C-f p a t h / t o / e m a c s / > s r c C-M-i > > Expected to see the same as if I had typed "s r c /", instead I see > "{lib-src | src }". Discovered that this is by design in normal non-icomplete.el conditions, i.e. minibuffer-force-completion is supposed to cycle. However in icomplete-mode it doesn't make sense because its "prospects list" will show what appears to be subfiles of the completed directory. Crucially, sometimes they *will* be subfiles of the completed directory (and that depends on whether the user's pattern matched one or more before the forced completion, which cannot be known anymore). Attach a patch that fixes this for icomplete.el only. -- João Távora