emacs - ido-ubiquitous for ido everywhere
authorPeng Li <seudut@gmail.com>
Thu, 9 Jun 2016 18:20:54 +0000 (02:20 +0800)
committerPeng Li <seudut@gmail.com>
Thu, 9 Jun 2016 18:20:54 +0000 (02:20 +0800)
emacs.d_2/config.org

index fea0d69..774126d 100644 (file)
@@ -402,6 +402,22 @@ cause we cannot input =[= and =]=, so here I unset this mappings. And redifined
 
 #+END_SRC
 
+** Ido-ubiquitous
+
+Use [[https://github.com/DarwinAwardWinner/ido-ubiquitous][ido-ubiquitous]] for ido everywhere. It makes =describe-function= can also use ido
+
+#+BEGIN_SRC emacs-lisp :tangle yes :results silent
+
+  (use-package ido-ubiquitous
+    :ensure t
+    :init
+    (setq magit-completing-read-function 'magit-ido-completing-read)
+    (setq gnus-completing-read-function 'gnus-ido-completing-read)
+    :config
+    (ido-ubiquitous-mode 1))
+
+#+END_SRC
+
 * Misc Settings