summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d
diff options
context:
space:
mode:
authorAlan Pearce2015-07-08 12:41:19 +0200
committerAlan Pearce2015-07-08 12:41:19 +0200
commit390c49918d250d87b61f4d9dd9d7d48c9b3871af (patch)
treee539c5de4d22a6dfaeca337d60024160ab89e34a /tag-emacs/emacs.d
parent7470476450164f188dbac5823506b28c519b6cd3 (diff)
downloaddotfiles-390c49918d250d87b61f4d9dd9d7d48c9b3871af.tar.lz
dotfiles-390c49918d250d87b61f4d9dd9d7d48c9b3871af.tar.zst
dotfiles-390c49918d250d87b61f4d9dd9d7d48c9b3871af.zip
Emacs: Configure fallback for ido-completing-read+
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r--tag-emacs/emacs.d/init.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el
index 1a1acbb..ba68236 100644
--- a/tag-emacs/emacs.d/init.el
+++ b/tag-emacs/emacs.d/init.el
@@ -622,6 +622,12 @@
               (ido-initiate-auto-merge (current-buffer)))
             (bind-key "C-c C-s" #'ido-manual-merge ido-file-dir-completion-map)))
 
+(req-package ido-completing-read+
+  :require ido
+  :config (progn
+            (setq ido-cr+-fallback-function #'helm-completing-read
+                  ido-cr+-max-items 2000)))
+
 (defun ap/ido-projectile-switch-buffer-dwim (force-ido)
   (interactive "p")
   (if (and (projectile-project-p) (eq force-ido 1))