From 7f7ed215ebd4446a74603f8fc3fe9ba0c7029717 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Tue, 1 Oct 2019 02:28:55 -0400 Subject: [PATCH] Enable Ido support in more locations --- init.el | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 7a70222..1addd12 100644 --- a/init.el +++ b/init.el @@ -659,7 +659,9 @@ ;; Load Magit (use-package magit :bind - ("C-c g" . magit-status)) + ("C-c g" . magit-status) + :custom + (magit-completing-read-function 'magit-ido-completing-read)) ;; [TODO Listing] ;; Load Magit-Todos @@ -667,6 +669,28 @@ :hook (magit-mode-hook)) +;;==================== +;; Crm-Custom (Additional Ido Compat.) +;;==================== + +;; Load Crm-Custom +(use-package crm-custom + :demand + t + :config + (crm-custom-mode 1)) + +;;==================== +;; Ido-Completing-Read+ (Ido Everywhere) +;;==================== + +;; Load Ido-Completing-Read+ +(use-package ido-completing-read+ + :demand + t + :config + (ido-ubiquitous-mode t)) + ;;==================== ;; Ido-Vertical-Mode (Vertical Completions) ;;====================