I'm trying to get ido to work with evil ex commands (such as :vsp ...
or :b ...
), but it doesn't seem to be working automatically. Currently I have:
(require 'ido)
(setq ido-everywhere t)
(ido-mode t)
(use-package ido-ubiquitous
:ensure ido-ubiquitous
:demand ido-ubiquitous
:init
(progn
(ido-ubiquitous-mode 1)))
And then later I require evil:
(use-package evil
:ensure evil
:config
(progn
(evil-mode 1)
;; ....
))
As a work around I can use stuff like (define-key evil-ex-map "e " 'ido-find-file)
and some custom ones for the splits but this isn't ideal. Why doesn't the above work automatically?
I'm using the graphical version of Emacs 25.0.50.1