From 9349b8045d8d025e9a90724eb7954430a772f7c4 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Tue, 30 Jun 2015 22:57:18 -0400 Subject: [PATCH] magit next: switch to magit-builtin-completing-read Which works with helm as well so we don't need to set it to magit-ido-completing-read (triggers a warning of magit about a required third-party we don't need). --- contrib/!source-control/git/extensions.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/!source-control/git/extensions.el b/contrib/!source-control/git/extensions.el index 668f554fc..df3b0042a 100644 --- a/contrib/!source-control/git/extensions.el +++ b/contrib/!source-control/git/extensions.el @@ -27,7 +27,7 @@ (add-to-list 'load-path (format "%smagit-next/lisp/" (configuration-layer/get-layer-property 'git :ext-dir))) - (setq magit-completing-read-function 'magit-ido-completing-read) + (setq magit-completing-read-function 'magit-builtin-completing-read) (add-hook 'git-commit-mode-hook 'fci-mode) ;; must enable auto-fill-mode again because somehow fci-mode disable it (add-hook 'git-commit-mode-hook 'auto-fill-mode)