From daa7107def1d864b2f03fa27efc51baa2284ee3e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 5 Jul 2019 16:47:08 +0200 Subject: [PATCH] Fix #1538: C-k in switch-buffer killing buffers Caused by an upstream change. --- modules/config/default/config.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/config/default/config.el b/modules/config/default/config.el index e84ba0364..2cb9bc22d 100644 --- a/modules/config/default/config.el +++ b/modules/config/default/config.el @@ -7,7 +7,9 @@ minibuffer-local-must-match-map minibuffer-local-isearch-map read-expression-map - ,@(if (featurep! :completion ivy) '(ivy-minibuffer-map))) + ,@(when (featurep! :completion ivy) + '(ivy-minibuffer-map + ivy-switch-buffer-map))) "A list of all the keymaps used for the minibuffer.")