diff options
author | Alan Pearce | 2015-07-08 12:41:19 +0200 |
---|---|---|
committer | Alan Pearce | 2015-07-08 12:41:19 +0200 |
commit | 390c49918d250d87b61f4d9dd9d7d48c9b3871af (patch) | |
tree | e539c5de4d22a6dfaeca337d60024160ab89e34a /tag-emacs | |
parent | 7470476450164f188dbac5823506b28c519b6cd3 (diff) | |
download | dotfiles-390c49918d250d87b61f4d9dd9d7d48c9b3871af.tar.lz dotfiles-390c49918d250d87b61f4d9dd9d7d48c9b3871af.tar.zst dotfiles-390c49918d250d87b61f4d9dd9d7d48c9b3871af.zip |
Emacs: Configure fallback for ido-completing-read+
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 6 |
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)) |