From 09098c09cfaa72f008793ef5607a4b24540d2370 Mon Sep 17 00:00:00 2001 From: sooheon Date: Mon, 21 Mar 2016 15:56:55 +0900 Subject: [PATCH] Set popwin config for Help buffer :noselect t Fixes issue #5546. Does not change behavior when calling help directly, as with describe-function or describe-variable. --- layers/+distribution/spacemacs-base/packages.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/+distribution/spacemacs-base/packages.el b/layers/+distribution/spacemacs-base/packages.el index efbff00f4..f1a87427c 100644 --- a/layers/+distribution/spacemacs-base/packages.el +++ b/layers/+distribution/spacemacs-base/packages.el @@ -463,7 +463,7 @@ (setq popwin:special-display-config nil) ;; buffers that we manage - (push '("*Help*" :dedicated t :position bottom :stick t :noselect nil :height 0.4) popwin:special-display-config) + (push '("*Help*" :dedicated t :position bottom :stick t :noselect t :height 0.4) popwin:special-display-config) (push '("*compilation*" :dedicated t :position bottom :stick t :noselect t :height 0.4) popwin:special-display-config) (push '("*Shell Command Output*" :dedicated t :position bottom :stick t :noselect nil ) popwin:special-display-config) (push '("*Async Shell Command*" :dedicated t :position bottom :stick t :noselect nil ) popwin:special-display-config)